Skip to content

chore: explicit eslint deps, gitignore #49

chore: explicit eslint deps, gitignore

chore: explicit eslint deps, gitignore #49

Workflow file for this run

name: Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20
- 22
- latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: yarn install, build, and test
run: |
yarn install --immutable
yarn build
yarn lint
yarn test
env:
CI: true