Skip to content

Add test for v2 apps #131

Add test for v2 apps

Add test for v2 apps #131

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: ./.github/actions/setup-environment
- run: pnpm lint
test:
name: "test (node: ${{matrix.node-version}}, os: ${{matrix.os}})"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-environment
with:
node-version: ${{matrix.node-version}}
- run: pnpm test:coverage
strategy:
fail-fast: false
matrix:
node-version:
- 18
- 20
- 22
os:
- macos-latest
- ubuntu-latest
- windows-latest