Skip to content

Run test scripts recursively from the top (#22) #85

Run test scripts recursively from the top (#22)

Run test scripts recursively from the top (#22) #85

Workflow file for this run

name: ci
on: push
env:
NODE_VERSION: 20.12.2
PNPM_VERSION: 9
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: ${{ env.PNPM_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- run: pnpm install --no-optional
- run: pnpm lint
- run: pnpm test