Skip to content

Clarify publication replay provenance #31

Clarify publication replay provenance

Clarify publication replay provenance #31

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
jobs:
compatibility:
name: Node 22.0 / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
# Node 22.0's npm.ps1 is broken on Windows; Bash selects the bundled npm shell shim instead.
# https://github.com/nodejs/node/issues/52682
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 22.0.0
package-manager-cache: false
- run: npm ci --omit=dev --ignore-scripts
- run: npm test
- run: npm run pack:check
- run: npm run pack:smoke
quality:
name: Node 24 quality
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: 24.18.0
package-manager-cache: false
- run: npm ci --ignore-scripts
- run: npm audit
- run: npm run check