Skip to content

Commit f060b06

Browse files
committed
Update CI
1 parent 646d610 commit f060b06

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/test.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
- name: Checkout the repository
1515
uses: actions/checkout@v4
1616
- name: Install pnpm
17-
uses: pnpm/action-setup@v2
17+
uses: pnpm/action-setup@v3
1818
with:
1919
version: 8
2020
- name: Install Node.js
21-
uses: actions/setup-node@v3
21+
uses: actions/setup-node@v4
2222
with:
2323
node-version: 21
2424
cache: pnpm
2525
- name: Install dependencies
26-
run: pnpm install --frozen-lockfile --ignore-scripts
26+
run: pnpm install --ignore-scripts
2727
- name: Run tests
2828
run: pnpm test
2929
short:
@@ -39,16 +39,16 @@ jobs:
3939
- name: Checkout the repository
4040
uses: actions/checkout@v4
4141
- name: Install pnpm
42-
uses: pnpm/action-setup@v2
42+
uses: pnpm/action-setup@v3
4343
with:
4444
version: 8
4545
- name: Install Node.js ${{ matrix.node-version }}
46-
uses: actions/setup-node@v3
46+
uses: actions/setup-node@v4
4747
with:
4848
node-version: ${{ matrix.node-version }}
4949
cache: pnpm
5050
- name: Install dependencies
51-
run: pnpm install --frozen-lockfile --ignore-scripts
51+
run: pnpm install --ignore-scripts
5252
- name: Run unit tests
5353
run: pnpm run unit
5454
old:
@@ -70,7 +70,7 @@ jobs:
7070
env:
7171
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
7272
- name: Install Node.js ${{ matrix.node-version }}
73-
uses: actions/setup-node@v3
73+
uses: actions/setup-node@v4
7474
with:
7575
node-version: ${{ matrix.node-version }}
7676
- name: Install dependencies
@@ -86,15 +86,15 @@ jobs:
8686
- name: Checkout the repository
8787
uses: actions/checkout@v4
8888
- name: Install pnpm
89-
uses: pnpm/action-setup@v2
89+
uses: pnpm/action-setup@v3
9090
with:
9191
version: 8
9292
- name: Install Node.js LTS
93-
uses: actions/setup-node@v3
93+
uses: actions/setup-node@v4
9494
with:
9595
node-version: 20
9696
cache: pnpm
9797
- name: Install dependencies
98-
run: pnpm install --frozen-lockfile --ignore-scripts
98+
run: pnpm install --ignore-scripts
9999
- name: Run unit tests
100100
run: pnpm run unit

0 commit comments

Comments
 (0)