Skip to content

Commit fc5b5ca

Browse files
committed
use node 18 across all tests
1 parent 2683c61 commit fc5b5ca

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
# Initialization
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-node@v3
18+
with:
19+
node-version: 18
1820
- run: npm install
1921
- name: Run Tests
2022
timeout-minutes: 5

.github/workflows/eslint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
# Initialization
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-node@v3
18+
with:
19+
node-version: 18
1820
- run: npm install
1921
- name: Run Tests
2022
timeout-minutes: 5

.github/workflows/generate-sqlite-base.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-node@v3
19+
with:
20+
node-version: 18
1921
- run: npm install
2022
- name: Set config
2123
run: |

.github/workflows/postgres-redis-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
- name: Check running containers
2222
run: docker ps
2323
- uses: actions/setup-node@v3
24+
with:
25+
node-version: 18
2426
- run: npm install
2527
- name: Run Tests
2628
env:

0 commit comments

Comments
 (0)