Skip to content

Beta

Beta #42

Workflow file for this run

name: Pull Request
on:
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: cd playground && npm ci
- run: cd ..
- run: npm run lint:ci
ts-check:
name: 'TS Check'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: cd playground && npm ci
- run: cd ..
- run: npm run dev:prepare
- run: npm run ts:check