96 lines
2.0 KiB
YAML
96 lines
2.0 KiB
YAML
name: authentik-ci-web
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- next
|
|
- version-*
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
lint-eslint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.1.1
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
- run: |
|
|
cd web
|
|
npm ci
|
|
- name: Generate API
|
|
run: make gen-web
|
|
- name: Eslint
|
|
run: |
|
|
cd web
|
|
npm run lint
|
|
lint-prettier:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.1.1
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
- run: |
|
|
cd web
|
|
npm ci
|
|
- name: Generate API
|
|
run: make gen-web
|
|
- name: prettier
|
|
run: |
|
|
cd web
|
|
npm run prettier-check
|
|
lint-lit-analyse:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.1.1
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
- run: |
|
|
cd web
|
|
npm ci
|
|
- name: Generate API
|
|
run: make gen-web
|
|
- name: lit-analyse
|
|
run: |
|
|
cd web
|
|
npm run lit-analyse
|
|
ci-web-mark:
|
|
needs:
|
|
- lint-eslint
|
|
- lint-prettier
|
|
- lint-lit-analyse
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo mark
|
|
build:
|
|
needs:
|
|
- ci-web-mark
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3.1.1
|
|
with:
|
|
node-version: '16'
|
|
cache: 'npm'
|
|
cache-dependency-path: web/package-lock.json
|
|
- run: |
|
|
cd web
|
|
npm ci
|
|
- name: Generate API
|
|
run: make gen-web
|
|
- name: build
|
|
run: |
|
|
cd web
|
|
npm run build
|