Skip to content

Revert chalk 5 because of ESM (attempt #3) #76

Revert chalk 5 because of ESM (attempt #3)

Revert chalk 5 because of ESM (attempt #3) #76

Workflow file for this run

# This workflow will run tests for PRs before allowing merge
name: Merge checks
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
run-tests:
strategy:
max-parallel: 6
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [16, 18]
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: "npm"
- run: npm ci --silent
- run: npm test