Skip to content

Commit f323904

Browse files
committed
fix: pin Node 18 in CI workflows for eslint compatibility
1 parent 783ef46 commit f323904

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/cypress.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
matrix:
99
browser: [firefox, chrome, edge]
1010

11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
13+
- uses: actions/checkout@v4
1314
- uses: actions/setup-node@v3
1415
with:
1516
node-version: 18
16-
- uses: actions/checkout@v4
1717
- uses: cypress-io/github-action@v6
1818
with:
1919
config: video=false

.github/workflows/eslint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v2
1111

12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 18
15+
1216
- name: Cache dependencies
1317
uses: actions/cache@v4
1418
with:

0 commit comments

Comments
 (0)