aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2025-03-27 15:24:03 -0400
committerGitHub <noreply@github.com>2025-03-27 15:24:03 -0400
commit7d4be0dcecdbe8deca8d055c0e2f10a369dc86e6 (patch)
treee5cd61b82bfe97c9cae132d9104763ab3be4d237 /.github
parentd1d63d9c1878b4567fec6a1d2bb86364de2b513e (diff)
downloadanubis-7d4be0dcecdbe8deca8d055c0e2f10a369dc86e6.tar.xz
anubis-7d4be0dcecdbe8deca8d055c0e2f10a369dc86e6.zip
Apply bits of the cookie settings PR one by one (#140)
Enables uses to change the cookie domain and partitioned flags. Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to '.github')
-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 54d833c..d112342 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -64,8 +64,13 @@ jobs:
~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/go.sum') }}
+ - name: install playwright browsers
+ run: |
+ npx --yes playwright@1.50.1 install --with-deps
+ npx --yes playwright@1.50.1 run-server --port 3000 &
+
- name: Build
run: go build ./...
- name: Test
- run: go test ./...
+ run: go test -v ./...