Skip to content
Open
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: 6 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ jobs:
check-access-and-checkout:
runs-on: ubuntu-latest
needs: authorization-check
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
environment: ${{ needs.authorization-check.outputs.approval-env }}
permissions:
id-token: write
Expand All @@ -73,7 +77,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: |
Expand All @@ -90,7 +94,7 @@ jobs:
if: always()
uses: actions/upload-artifact@v5
with:
name: test-artifacts-integ
name: test-artifacts-integ-${{ matrix.node-version }}
path: ./test/.artifacts/
retention-days: 4
include-hidden-files: true # needed because the path has a directory starting with a '.'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
node-version: [20, 22, 24]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down Expand Up @@ -63,4 +63,4 @@ jobs:
run: npm run build

- name: Test packaging
run: npm run test:package
run: npm run test:package