Skip to content

ci: run tests on push to dev, main and all PRs #154

ci: run tests on push to dev, main and all PRs

ci: run tests on push to dev, main and all PRs #154

Workflow file for this run

name: tests
on:
push:
branches:
- main
- dev
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- run: yarn test