Skip to content

Commit 7bb9765

Browse files
fix workflows
1 parent a0d92f1 commit 7bb9765

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: '18'
21+
node-version: '22'
2222
cache: 'yarn'
2323

2424
- name: Install dependencies
@@ -89,7 +89,7 @@ jobs:
8989
- name: Setup Node.js
9090
uses: actions/setup-node@v4
9191
with:
92-
node-version: '18'
92+
node-version: '22'
9393
cache: 'yarn'
9494

9595
- name: Install dependencies
@@ -110,7 +110,7 @@ jobs:
110110
- name: Setup Node.js
111111
uses: actions/setup-node@v4
112112
with:
113-
node-version: '18'
113+
node-version: '22'
114114
cache: 'yarn'
115115

116116
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Setup Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '18'
19+
node-version: '22'
2020
cache: 'yarn'
2121

2222
- name: Install dependencies
23-
run: yarn install --frozen-lockfile
23+
run: yarn install --immutable
2424

2525
- name: Run tests
2626
run: npm run test:coverage
@@ -45,12 +45,12 @@ jobs:
4545
- name: Setup Node.js
4646
uses: actions/setup-node@v4
4747
with:
48-
node-version: '18'
48+
node-version: '22'
4949
cache: 'yarn'
5050
registry-url: 'https://registry.npmjs.org'
5151

5252
- name: Install dependencies
53-
run: yarn install --frozen-lockfile
53+
run: yarn install --immutable
5454

5555
- name: Build package
5656
run: npm run build

0 commit comments

Comments
 (0)