22 lines
398 B
YAML
22 lines
398 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
|
|
jobs:
|
|
schema-and-codegen:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "20"
|
|
cache: npm
|
|
- run: |
|
|
npm install --no-fund --no-audit
|
|
npm run schema:lint
|
|
npm run codegen
|
|
npm run build
|