Skip to content
Open
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: 6 additions & 6 deletions .github/workflows/pr.ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ on: pull_request

jobs:
precheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04

steps:
- name: Checkout PR
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5

- name: Use Node.js LTS (16.x)
- name: Use Node.js LTS (24.x)
uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e
with:
node-version: 16.x
node-version: 24.x

- name: Install project dependencies
run: yarn install --frozen-lockfile --ignore-scripts
Expand All @@ -25,11 +25,11 @@ jobs:
run: yarn lint

unit_tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04

strategy:
matrix:
node-version: [16.x, 18.x]
node-version: [24.x, 26.x]

steps:
- name: Checkout PR
Expand All @@ -44,7 +44,7 @@ jobs:
run: yarn install --frozen-lockfile

smoke_tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-26.04
steps:
- name: Checkout code
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
Expand Down
Loading