Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: CI

on:
pull_request:
branches:
- main
- next
Comment thread
designcode marked this conversation as resolved.
push:
branches:
- main
workflow_dispatch:
Expand All @@ -19,7 +15,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: '22'
Comment thread
designcode marked this conversation as resolved.
node-version: "22"
- run: npm ci
- run: npm run test
- run: npm run build
Expand All @@ -36,7 +32,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: '22'
node-version: "22"
- run: npm ci
- run: npm run build
- run: npm run test:integration
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ jobs:
node-version: '22'
registry-url: 'https://registry.npmjs.org'

# OIDC trusted publishing on `npm publish` needs npm >= 11.5.1; node 22
# bundles npm ~10.9, which can sign provenance but cannot authenticate
# the publish via OIDC (semantic-release did its own OIDC exchange).
# Pin to major 11 (latest 11.x) rather than @latest for reproducibility.
- run: npm install -g npm@11

- run: npm ci
- run: npm run lint
- run: npm run build
Expand Down Expand Up @@ -206,6 +212,12 @@ jobs:
node-version: '22'
registry-url: 'https://registry.npmjs.org'

# OIDC trusted publishing on `npm publish` needs npm >= 11.5.1; node 22
# bundles npm ~10.9, which can sign provenance but cannot authenticate
# the publish via OIDC (semantic-release did its own OIDC exchange).
# Pin to major 11 (latest 11.x) rather than @latest for reproducibility.
- run: npm install -g npm@11

- run: npm ci
- run: npm run build

Expand Down