Skip to content

Commit 448591e

Browse files
authored
chore: update lockfile (#376)
* chore: update lockfile * fix build, test on node 22
1 parent b021e2a commit 448591e

File tree

15 files changed

+17784
-6366
lines changed

15 files changed

+17784
-6366
lines changed

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- uses: actions/checkout@v4
2222
with:
2323
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
24-
- name: Use Node.js 18
24+
- name: Use Node.js 22
2525
uses: actions/setup-node@v4
2626
with:
27-
node-version: 18
27+
node-version: 22
2828

2929
- name: Build docs
3030
run: |

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,10 @@ jobs:
9494
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
9595
fetch-depth: 0
9696

97-
- name: Use Node.js 18
97+
- name: Use Node.js 22
9898
uses: actions/setup-node@v4
9999
with:
100-
node-version: 18
100+
node-version: 22
101101
cache: 'npm'
102102
cache-dependency-path: 'package-lock.json'
103103

.github/workflows/test-and-release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# tests on windows are extremely unstable
2828
# os: [ ubuntu-22.04, windows-2019 ]
2929
os: [ubuntu-22.04]
30-
node-version: [16, 18, 20]
30+
node-version: [16, 18, 20, 22]
3131

3232
steps:
3333
- name: Cancel Workflow Action
@@ -73,10 +73,10 @@ jobs:
7373
- name: Checkout Source code
7474
uses: actions/checkout@v4
7575

76-
- name: Use Node.js 18
76+
- name: Use Node.js 22
7777
uses: actions/setup-node@v4
7878
with:
79-
node-version: 18
79+
node-version: 22
8080
cache: 'npm'
8181
cache-dependency-path: 'package-lock.json'
8282

@@ -107,10 +107,10 @@ jobs:
107107
- name: Checkout repository
108108
uses: actions/checkout@v4
109109

110-
- name: Use Node.js 18
110+
- name: Use Node.js 22
111111
uses: actions/setup-node@v4
112112
with:
113-
node-version: 18
113+
node-version: 22
114114
cache: 'npm'
115115
cache-dependency-path: 'package-lock.json'
116116

@@ -144,10 +144,10 @@ jobs:
144144
fetch-depth: 0 # we need to pull everything to have correct dev version suffix
145145
ref: master
146146

147-
- name: Use Node.js 18
147+
- name: Use Node.js 22
148148
uses: actions/setup-node@v4
149149
with:
150-
node-version: 18
150+
node-version: 22
151151
cache: 'npm'
152152
cache-dependency-path: 'package-lock.json'
153153

.github/workflows/test-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
2626

27-
- name: Use Node.js 18
27+
- name: Use Node.js 22
2828
uses: actions/setup-node@v4
2929
with:
30-
node-version: 18
30+
node-version: 22
3131
cache: 'npm'
3232
cache-dependency-path: 'package-lock.json'
3333

eslint.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import eslintConfigPrettier from 'eslint-config-prettier/flat';
55
export default [
66
{
77
ignores: [
8-
'node_modules',
9-
'dist',
8+
'**/node_modules',
9+
'**/dist',
1010
'coverage',
1111
'**/*.js',
1212
'**/*.d.ts',

0 commit comments

Comments
 (0)