Skip to content

Bump version

Bump version #227

Workflow file for this run

name: Tests
on: [pull_request, push]
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
runs-on: ubuntu-latest
steps:
# <common-build> - Uses YAML anchors in the future
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: ${{matrix.node}}
- name: Install
run: yarn install --frozen-lockfile
# </common-build>
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Unit tests
run: yarn test:unit