Skip to content
Closed
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
22 changes: 15 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,21 @@ env:

jobs:
verify:
name: Types, lint, unit tests
name: Types, lint, unit (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Lowest version `engines` claims to support, and the version the
# project is developed on. These ship different npm majors, which
# resolve `package-lock.json` differently — testing both stops a
# lockfile that only installs on one of them from being committed.
node: ['22.6', '26.x']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
with:
node-version: ${{ env.NODE_VERSION }}
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run typecheck
Expand All @@ -52,7 +60,7 @@ jobs:
--health-timeout 5s
--health-retries 10
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
with:
node-version: ${{ env.NODE_VERSION }}
Expand All @@ -78,7 +86,7 @@ jobs:
--health-timeout 5s
--health-retries 10
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- uses: actions/setup-node@v5
with:
node-version: ${{ env.NODE_VERSION }}
Expand All @@ -102,8 +110,8 @@ jobs:
name: Docker image builds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: docker/setup-buildx-action@v3
- uses: actions/checkout@v7
- uses: docker/setup-buildx-action@v4
- uses: docker/build-push-action@v6
with:
context: .
Expand Down
Loading
Loading