diff options
| author | Xe Iaso <me@xeiaso.net> | 2025-03-28 13:40:38 -0400 |
|---|---|---|
| committer | Xe Iaso <me@xeiaso.net> | 2025-03-28 13:40:38 -0400 |
| commit | 236e32ee9557cda24e8a20b5da0a904c8cd2ebd1 (patch) | |
| tree | c9e86424e791c211ced26f16008bbe2a95c83638 | |
| parent | 032662ddbde5cc94672efd2fe78297f65ed92db9 (diff) | |
| download | anubis-236e32ee9557cda24e8a20b5da0a904c8cd2ebd1.tar.xz anubis-236e32ee9557cda24e8a20b5da0a904c8cd2ebd1.zip | |
fix CI
Signed-off-by: Xe Iaso <me@xeiaso.net>
| -rw-r--r-- | .github/workflows/go.yml | 7 | ||||
| -rw-r--r-- | 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" |
