mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
b9435870c0
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
91 lines
2.1 KiB
YAML
91 lines
2.1 KiB
YAML
name: authentik-ci-web
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
- version-*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- version-*
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
command:
|
|
- lint
|
|
- lint:lockfile
|
|
- tsc
|
|
- prettier-check
|
|
project:
|
|
- web
|
|
include:
|
|
- command: tsc
|
|
project: web
|
|
- command: lit-analyse
|
|
project: web
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: ${{ matrix.project }}/package.json
|
|
cache: "npm"
|
|
cache-dependency-path: ${{ matrix.project }}/package-lock.json
|
|
- working-directory: ${{ matrix.project }}/
|
|
run: |
|
|
npm ci
|
|
- name: Generate API
|
|
run: make gen-client-ts
|
|
- name: Lint
|
|
working-directory: ${{ matrix.project }}/
|
|
run: npm run ${{ matrix.command }}
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: web/package.json
|
|
cache: "npm"
|
|
cache-dependency-path: web/package-lock.json
|
|
- working-directory: web/
|
|
run: npm ci
|
|
- name: Generate API
|
|
run: make gen-client-ts
|
|
- name: build
|
|
working-directory: web/
|
|
run: npm run build
|
|
ci-web-mark:
|
|
if: always()
|
|
needs:
|
|
- build
|
|
- lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: re-actors/alls-green@release/v1
|
|
with:
|
|
jobs: ${{ toJSON(needs) }}
|
|
test:
|
|
needs:
|
|
- ci-web-mark
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: web/package.json
|
|
cache: "npm"
|
|
cache-dependency-path: web/package-lock.json
|
|
- working-directory: web/
|
|
run: npm ci
|
|
- name: Generate API
|
|
run: make gen-client-ts
|
|
- name: test
|
|
working-directory: web/
|
|
run: npm run test || exit 0
|