Skip to content

Bump project version #150

Bump project version

Bump project version #150

Workflow file for this run

---
name: tests
on:
push:
branches-ignore:
- 'development/**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: install dependencies
run: yarn install --frozen-lockfile
- name: lint javascript
run: yarn --silent lint -- --max-warnings 0
- name: run tests
run: yarn test