Skip to content

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

Revert chalk 5 because of ESM (attempt #3)

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

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
- run: npm test
coverage-report:

Check failure on line 30 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / Merge checks

Invalid workflow file

The workflow is not valid. .github/workflows/pull_request.yml (Line: 30, Col: 3): Error calling workflow 'M365Bass/spfx-jack/.github/workflows/jest_coverage_report.yml@e41f2f912d942341b93cfc574ba22fa5436738a8'. The nested job 'coverage' is requesting 'checks: write, contents: write, pull-requests: write', but is only allowed 'checks: none, contents: read, pull-requests: none'.
uses: ./.github/workflows/jest_coverage_report.yml
needs: run-tests