334d5d769f
renovate/stability-days Updates have met minimum release age requirement
CI / Test (action.json) (push) Successful in 9s
CI / Test (bun-npm.json) (push) Successful in 3s
CI / Test (docker-compose.json) (push) Successful in 2s
CI / Test (common.json) (push) Successful in 8s
CI / Test (golang.json) (push) Successful in 3s
CI / Test (k8s.json) (push) Successful in 2s
CI / Test (helm.json) (push) Successful in 9s
CI / Format (push) Successful in 6s
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
name: Test
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
json-file:
|
|
- "action.json"
|
|
- "k8s.json"
|
|
- "helm.json"
|
|
- "common.json"
|
|
- "docker-compose.json"
|
|
- "bun-npm.json"
|
|
- "golang.json"
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- name: Validate "${{ matrix.json-file }}"
|
|
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@30070f7f9c7376fd87998980078688f61cecda59 # 0.1.13
|
|
with:
|
|
json-file: "./${{ matrix.json-file }}"
|
|
|
|
format:
|
|
name: Format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
|
|
with:
|
|
bun-version-file: ".bun-version"
|
|
- run: bun install --frozen-lockfile
|
|
- name: Check formatting
|
|
run: bun run fmt:check
|