Skip to content

Commit f8ffe86

Browse files
committed
golang github action for FE
1 parent d26e578 commit f8ffe86

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/go-unit-test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,16 @@ jobs:
1818
with:
1919
go-version: 1.23.4
2020

21-
- name: Install dependencies
21+
- name: Install Go Dependencies
2222
run: go mod tidy
2323

24+
- name: Install Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: 20.12.0
28+
29+
- name: Install JS Dependencies
30+
run: npm install
31+
2432
- name: Run tests
2533
run: go test -v -cover ./...

0 commit comments

Comments
 (0)