Skip to content

chore: fix CI, add typecheck script, add Day Animated example #1

chore: fix CI, add typecheck script, add Day Animated example

chore: fix CI, add typecheck script, add Day Animated example #1

Workflow file for this run

name: Main CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Node modules
run: |
yarn install
yarn --cwd example install
- name: Lint
run: |
yarn lint
- name: Type Check
run: |
yarn typecheck
- name: Test
run: |
yarn test