Skip to content

add yarn build to checks #12

add yarn build to checks

add yarn build to checks #12

Workflow file for this run

name: Static checks & tests
on:
- push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: yarn install
- name: Generate code
run: make gen
- name: Run check
run: make check