Skip to content

Installs project and runs tests #46

Installs project and runs tests

Installs project and runs tests #46

Workflow file for this run

name: tests
run-name: Installs project and runs tests
on: [ push, pull_request ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20, 22 ]
name: Tests Pass on Ubuntu with Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn test