Skip to content

chore: bump version to v3.4.0 #42

chore: bump version to v3.4.0

chore: bump version to v3.4.0 #42

Workflow file for this run

name: 'Continuous Integration'
on:
push:
pull_request:
jobs:
unit-tests:
name: Unit tests and Coverage (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
matrix:
node:
- 16
- 18
- 20
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run test:coverage
lint-typecheck:
name: 'Lint and TypeCheck'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- run: npm run lint
- run: npm run typecheck