Skip to content

docs: add mixed VSR and Jest test example #18

docs: add mixed VSR and Jest test example

docs: add mixed VSR and Jest test example #18

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-node-18:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: yarn install --frozen-lockfile
- run: yarn ci
# TypeScript Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript
- run: yarn test
working-directory: ./examples/typescript
test-node-20:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: yarn install --frozen-lockfile
- run: yarn ci
# TypeScript Example
- run: yarn install --frozen-lockfile
working-directory: ./examples/typescript
- run: yarn test
working-directory: ./examples/typescript