add ci #1

Merged
keligrubb merged 15 commits from add-ci into main 2026-02-12 19:50:45 +00:00
Showing only changes of commit 15625dc86f - Show all commits

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