Skip to content

Commit a851d95

Browse files
authored
chore(deps): update (#115)
1 parent 1c5c744 commit a851d95

File tree

20 files changed

+5798
-6547
lines changed

20 files changed

+5798
-6547
lines changed

.github/workflows/audits.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up node
3434
uses: actions/setup-node@v3
3535
with:
36-
node-version: 18
36+
node-version-file: .nvmrc
3737
cache: yarn
3838
- name: Install
3939
run: yarn install --immutable
@@ -81,7 +81,7 @@ jobs:
8181
- name: Set up node
8282
uses: actions/setup-node@v3
8383
with:
84-
node-version: 18
84+
node-version-file: .nvmrc
8585
cache: yarn
8686
- name: Install
8787
run: yarn install --immutable
@@ -132,7 +132,7 @@ jobs:
132132
- name: Set up node
133133
uses: actions/setup-node@v3
134134
with:
135-
node-version: 18
135+
node-version-file: .nvmrc
136136
cache: yarn
137137
- name: Install
138138
run: yarn install --immutable

.github/workflows/benchmark.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up node
2323
uses: actions/setup-node@v3
2424
with:
25-
node-version: 18
25+
node-version-file: .nvmrc
2626
cache: yarn
2727
- name: Install
2828
run: yarn install --immutable
@@ -48,7 +48,7 @@ jobs:
4848
- name: Set up node
4949
uses: actions/setup-node@v3
5050
with:
51-
node-version: 18
51+
node-version-file: .nvmrc
5252
cache: yarn
5353
- name: Install
5454
run: yarn install --immutable
@@ -74,7 +74,7 @@ jobs:
7474
- name: Set up node
7575
uses: actions/setup-node@v3
7676
with:
77-
node-version: 18
77+
node-version-file: .nvmrc
7878
cache: yarn
7979
- name: Install
8080
run: yarn install --immutable
@@ -100,7 +100,7 @@ jobs:
100100
- name: Set up node
101101
uses: actions/setup-node@v3
102102
with:
103-
node-version: 18
103+
node-version-file: .nvmrc
104104
cache: yarn
105105
- name: Install
106106
run: yarn install --immutable
@@ -126,7 +126,7 @@ jobs:
126126
- name: Set up node
127127
uses: actions/setup-node@v3
128128
with:
129-
node-version: 18
129+
node-version-file: .nvmrc
130130
cache: yarn
131131
- name: Install
132132
run: yarn install --immutable
@@ -152,12 +152,19 @@ jobs:
152152
- name: Set up node
153153
uses: actions/setup-node@v3
154154
with:
155-
node-version: 18
155+
node-version-file: .nvmrc
156156
cache: yarn
157157
- name: Set up deno
158158
uses: denoland/setup-deno@v1
159159
with:
160160
deno-version: 1.x
161+
- name: Set up deno cache
162+
uses: actions/cache@v3
163+
with:
164+
path: |
165+
~/.deno
166+
~/.cache/deno
167+
key: ${{ runner.os }}-deno-${{ hashFiles('**/yarn.lock') }}
161168
- name: Install
162169
run: yarn install --immutable
163170
- name: Download k6
@@ -186,7 +193,7 @@ jobs:
186193
- name: Set up node
187194
uses: actions/setup-node@v3
188195
with:
189-
node-version: 18
196+
node-version-file: .nvmrc
190197
cache: yarn
191198
- name: Set up bun
192199
uses: oven-sh/setup-bun@v1

.github/workflows/build-and-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up node
1313
uses: actions/setup-node@v3
1414
with:
15-
node-version: 18
15+
node-version-file: .nvmrc
1616
cache: yarn
1717
- name: Install
1818
run: yarn install --immutable
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up node
3838
uses: actions/setup-node@v3
3939
with:
40-
node-version: 18
40+
node-version-file: .nvmrc
4141
cache: yarn
4242
- name: Install
4343
run: yarn install --immutable
@@ -63,7 +63,7 @@ jobs:
6363
- name: Set up node
6464
uses: actions/setup-node@v3
6565
with:
66-
node-version: 18
66+
node-version-file: .nvmrc
6767
cache: yarn
6868
- name: Install
6969
run: yarn install --immutable

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Node
2828
uses: actions/setup-node@v3
2929
with:
30-
node-version: 18
30+
node-version-file: .nvmrc
3131
cache: yarn
3232
- name: Install
3333
run: yarn install --immutable
@@ -44,7 +44,7 @@ jobs:
4444
- name: Set up Node
4545
uses: actions/setup-node@v3
4646
with:
47-
node-version: 18
47+
node-version-file: .nvmrc
4848
cache: yarn
4949
- name: Install
5050
run: yarn install --immutable

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up node
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: 18
19+
node-version-file: .nvmrc
2020
cache: yarn
2121
- name: Install
2222
run: yarn install --immutable

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v21

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

Lines changed: 0 additions & 541 deletions
This file was deleted.

.yarn/releases/yarn-3.6.3.cjs

Lines changed: 0 additions & 874 deletions
This file was deleted.

.yarn/releases/yarn-4.0.2.cjs

Lines changed: 893 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
nodeLinker: node-modules
1+
compressionLevel: mixed
2+
3+
enableGlobalCache: false
24

3-
plugins:
4-
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5-
spec: '@yarnpkg/plugin-interactive-tools'
5+
nodeLinker: node-modules
66

7-
yarnPath: .yarn/releases/yarn-3.6.3.cjs
7+
yarnPath: .yarn/releases/yarn-4.0.2.cjs

0 commit comments

Comments
 (0)