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
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: npm ci

- name: Cache node_modules
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -53,7 +53,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -80,7 +80,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-node${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
Expand All @@ -100,6 +100,8 @@ jobs:
- name: Coverage report on PR
if: always() && matrix.node-version == 22 && github.event_name == 'pull_request'
uses: davelosert/vitest-coverage-report-action@v2
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
with:
json-summary-path: coverage/coverage-summary.json
json-final-path: coverage/coverage-final.json
Expand All @@ -124,7 +126,7 @@ jobs:
node-version: 22

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: node_modules
key: node-modules-${{ runner.os }}-node22-${{ hashFiles('package-lock.json') }}
Expand All @@ -139,5 +141,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- uses: actions/dependency-review-action@v4
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
with:
fail-on-severity: moderate
2 changes: 1 addition & 1 deletion .github/workflows/pr-title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ permissions:
jobs:
release-please:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- uses: googleapis/release-please-action@v4
with:
Expand Down
Loading