Skip to content

chore: Merge pull request #96 from danielroe/v4-compatibility #53

chore: Merge pull request #96 from danielroe/v4-compatibility

chore: Merge pull request #96 from danielroe/v4-compatibility #53

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- '.vscode/*'
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- run: pnpm install
- run: pnpm lint
# dev:prepare is needed since we extend from the ./playground/.nuxt/tsconfig.json in ./tsconfig.json
- name: Prepare tsconfig
run: pnpm dev:prepare
- run: pnpm typecheck
- run: pnpm test