Skip to content

Release v7.1.25

Release v7.1.25 #16802

name: Add artifacts on push
on:
push:
permissions:
contents: read
jobs:
test:
name: Enumerate and diff features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
fetch-depth: 0 # get the full repository checkout, not just the inciting commit
persist-credentials: false
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".nvmrc"
cache: npm
package-manager-cache: true
- run: npm ci
- run: npx tsx ./scripts/enumerate-features.ts features.json
- run: npx tsx ./scripts/diff-features.ts --no-github --format=json > features.diff.json
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: enumerate-features
path: features.json
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: diff-features
path: features.diff.json