Skip to content

Commit da6001d

Browse files
committed
fix test.yml
1 parent 75a5c35 commit da6001d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,21 @@ jobs:
5454
go test ./...
5555
5656
frontend-unit-tests:
57-
- name: Set up Node.js
58-
uses: actions/setup-node@v2
59-
with:
60-
node-version: '22'
57+
runs-on: ubuntu-latest
58+
59+
steps:
60+
- name: Checkout repository
61+
uses: actions/checkout@v2
6162

6263
- name: Setup .env
6364
run: |
6465
cd ./apps/frontend
6566
cp .env.example .env
67+
68+
- name: Set up Node.js
69+
uses: actions/setup-node@v2
70+
with:
71+
node-version: '22'
6672

6773
- name: Install pnpm
6874
run: npm i -g pnpm

0 commit comments

Comments
 (0)