From 236e32ee9557cda24e8a20b5da0a904c8cd2ebd1 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Fri, 28 Mar 2025 13:40:38 -0400 Subject: fix CI Signed-off-by: Xe Iaso --- .github/workflows/go.yml | 7 ++++++- xess/xess.go | 2 +- 2 files changed, 7 insertions(+), 2 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 diff --git a/xess/xess.go b/xess/xess.go index 2438cb5..18d995d 100644 --- a/xess/xess.go +++ b/xess/xess.go @@ -16,7 +16,7 @@ import ( //go:generate npm run build var ( - //go:embed xess.min.css xess.css static + //go:embed *.css static Static embed.FS URL = "/.within.website/x/xess/xess.css" -- cgit v1.2.3