Skip to content

Use ----singlePackage option for release-plan #12

Use ----singlePackage option for release-plan

Use ----singlePackage option for release-plan #12

Workflow file for this run

name: CI
on:
pull_request: {}
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm lint
test:
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
with:
node-version: ${{matrix.node-version}}
- run: pnpm test:coverage
strategy:
matrix:
node-version: [18, 20, 21]