Skip to content

Commit d5cf051

Browse files
committed
Update Github actions
1 parent 40ad105 commit d5cf051

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@ jobs:
1515
- name: Checkout the repository
1616
uses: actions/checkout@v4
1717
- name: Install pnpm
18-
uses: pnpm/action-setup@v2
18+
uses: pnpm/action-setup@v3
1919
with:
2020
version: 8
2121
- name: Install Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: 21
2525
cache: pnpm
2626
- name: Install dependencies
27-
run: pnpm install --frozen-lockfile --ignore-scripts
27+
run: pnpm install --ignore-scripts
2828
- name: Run tests
2929
run: pnpm test
3030
short:
@@ -39,15 +39,15 @@ 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 unit

0 commit comments

Comments
 (0)