Skip to content

CI test

CI test #3

Workflow file for this run

name: checks
on: [pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install Dependencies
run: yarn install
- run: yarn build
- run: yarn lint
- run: yarn typecheck
- run: yarn test