refactor(security): global error handler #169
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test | |
on: [ push ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
if: ${{ !contains( github.event.head_commit.message, 'dependabot:' ) }} | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v3 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build(Compile Typescript) | |
working-directory: . | |
run: npm run build | |
- name: Run Unit Tests | |
run: npm test |