aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index d112342..2837c98 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -69,8 +69,13 @@ jobs:
npx --yes playwright@1.50.1 install --with-deps
npx --yes playwright@1.50.1 run-server --port 3000 &
+ - name: install node deps
+ run: |
+ npm ci
+ npm run assets
+
- name: Build
run: go build ./...
- name: Test
- run: go test -v ./...
+ run: npm run test