Skip to content

ci: setup CI (#9)

ci: setup CI (#9) #2

Workflow file for this run

name: ci
on:
push:
branches: [main, next]
pull_request:
branches: ['*']
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20.x
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test