try fixing e2e tests
Some checks failed
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline failed

This commit is contained in:
Madison Grubb
2026-02-11 23:02:54 -05:00
parent ec67a178cf
commit 15625dc86f

View File

@@ -1,6 +1,7 @@
steps: steps:
- name: lint - name: lint
image: node:24-slim image: node:24-slim
depends_on: []
commands: commands:
- npm ci - npm ci
- npm run lint - npm run lint
@@ -9,6 +10,7 @@ steps:
- name: test - name: test
image: node:24-slim image: node:24-slim
depends_on: []
environment: environment:
CI: "true" CI: "true"
commands: commands:
@@ -17,9 +19,11 @@ steps:
- event: pull_request - event: pull_request
- name: e2e - name: e2e
image: mcr.microsoft.com/playwright:v1.58.2-noble image: node:24-slim
depends_on: []
commands: commands:
- npm ci - npm ci
- npx playwright install --with-deps
- npm run test:e2e - npm run test:e2e
environment: environment:
CI: "true" CI: "true"
@@ -29,6 +33,7 @@ steps:
- name: docker-build - name: docker-build
image: woodpeckerci/plugin-kaniko image: woodpeckerci/plugin-kaniko
depends_on: []
settings: settings:
repo: git.keligrubb.com/${CI_REPO_OWNER}/${CI_REPO_NAME} repo: git.keligrubb.com/${CI_REPO_OWNER}/${CI_REPO_NAME}
registry: git.keligrubb.com registry: git.keligrubb.com