This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-30 18:21:15 +00:00
|
|
|
name: authentik-ci-web
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-09-03 08:53:39 +00:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- next
|
|
|
|
- version-*
|
|
|
|
pull_request:
|
2021-09-07 08:06:30 +00:00
|
|
|
branches:
|
|
|
|
- master
|
2021-08-30 18:21:15 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint-eslint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- run: |
|
|
|
|
cd web
|
|
|
|
npm install
|
|
|
|
- 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@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- run: |
|
|
|
|
cd web
|
|
|
|
npm install
|
|
|
|
- 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@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- run: |
|
|
|
|
cd web
|
|
|
|
npm install
|
|
|
|
- name: Generate API
|
|
|
|
run: make gen-web
|
2021-09-28 07:39:21 +00:00
|
|
|
- name: lit-analyse
|
2021-08-30 18:21:15 +00:00
|
|
|
run: |
|
|
|
|
cd web
|
|
|
|
npm run lit-analyse
|
|
|
|
build:
|
|
|
|
needs:
|
|
|
|
- lint-eslint
|
|
|
|
- lint-prettier
|
|
|
|
- lint-lit-analyse
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
|
|
|
node-version: '16'
|
|
|
|
cache: 'npm'
|
|
|
|
cache-dependency-path: web/package-lock.json
|
|
|
|
- run: |
|
|
|
|
cd web
|
|
|
|
npm install
|
|
|
|
- name: Generate API
|
|
|
|
run: make gen-web
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
cd web
|
|
|
|
npm run build
|