Skip to content

lib: fix: propagate exit codes from spawned processes (#3) #13

lib: fix: propagate exit codes from spawned processes (#3)

lib: fix: propagate exit codes from spawned processes (#3) #13

Workflow file for this run

name: 👷 CI
on:
pull_request_target:
push:
branches:
- master
- next
- next-major
- alpha
- beta
jobs:
ci:
strategy:
matrix:
node: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: ⤵️ Checkout
uses: actions/checkout@v3
- name: 🎉 Setup nodejs
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: 🎉 Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 7
run_install: false
- name: 🚧 Install
run: pnpm install --no-frozen-lockfile --ignore-scripts
- name: 🚀 CI
run: pnpm run ci