Skip to content

Commit b8cc20d

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

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
runs-on: ubuntu-latest
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)