Skip to content

feat: take full control over non-http exceptions #156

feat: take full control over non-http exceptions

feat: take full control over non-http exceptions #156

Workflow file for this run

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