Skip to content

chore: update GitHub workflows to disable strict Corepack mode and ig… #29

chore: update GitHub workflows to disable strict Corepack mode and ig…

chore: update GitHub workflows to disable strict Corepack mode and ig… #29

Workflow file for this run

name: tests
on:
push:
branches-ignore: [main]
workflow_dispatch:
env:
COREPACK_ENABLE_STRICT: 0
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node_version: [lts/*, latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v6
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- run: pnpm install --ignore-scripts
- run: pnpm run build
- run: pnpm run test