23 lines
556 B
YAML
23 lines
556 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
feature:
|
|
if: github.ref != 'refs/heads/main'
|
|
uses: niko/gitea-ci-library/.gitea/workflows/build-feature.yml@feature/pipeline-cleanup
|
|
secrets: inherit
|
|
with:
|
|
bats-image: bats/bats:latest
|
|
cucumber-node-image: node:22
|
|
|
|
main:
|
|
if: github.ref == 'refs/heads/main'
|
|
uses: niko/gitea-ci-library/.gitea/workflows/build-feature.yml@feature/pipeline-cleanup
|
|
secrets: inherit
|
|
with:
|
|
bats-image: bats/bats:latest
|
|
cucumber-node-image: node:22
|