Skip to content

Commit 49458b1

Browse files
authored
Merge pull request #39 from codebar/update-node-version-in-github-workflows
Update node version in Github workflows
2 parents e958ad5 + 9481df8 commit 49458b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Setup Node
1515
uses: actions/setup-node@v1
1616
with:
17-
node-version: "12.x"
17+
node-version: "22.x"
1818

1919
- name: Get yarn cache
2020
id: yarn-cache

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- uses: actions/checkout@v1
99
- uses: actions/setup-node@v1
1010
with:
11-
node-version: "13.x"
11+
node-version: "22.x"
1212
- run: yarn
1313
- run: yarn analyze
1414
typescript:
@@ -18,6 +18,6 @@ jobs:
1818
- uses: actions/checkout@v1
1919
- uses: actions/setup-node@v1
2020
with:
21-
node-version: "13.x"
21+
node-version: "22.x"
2222
- run: yarn
2323
- run: yarn type-check

0 commit comments

Comments
 (0)