Skip to content
Merged
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
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line numberDiff line numberDiff line change
Expand Up@@ -8,6 +8,10 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
# Override mise.toml so each matrix job installs and activates the Node
# version it is responsible for testing.
MISE_NODE_VERSION: ${{ matrix.node-version }}
strategy:
matrix:
# 22.12.0 verifies package.json's stated `engines.node` floor; 24 is
Expand All@@ -18,11 +22,10 @@ jobs:
steps:
- uses: actions/checkout@v7

- name: Set up Node
uses: actions/setup-node@v7
- name: Set up toolchain
uses: jdx/mise-action@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
cache_key: "{{default}}-node-${{ matrix.node-version }}"

- name: Install dependencies
run: npm ci
Expand Down
Loading