ldap: still temporarily disable PW sync from LDAP #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: authentik-ci-web | |
on: | |
push: | |
branches: | |
- main | |
- next | |
- version-* | |
pull_request: | |
branches: | |
- main | |
- version-* | |
jobs: | |
lint-eslint: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: | |
- web | |
- tests/wdio | |
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: Eslint | |
working-directory: ${{ matrix.project }}/ | |
run: npm run lint | |
lint-lockfile: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- working-directory: web/ | |
run: | | |
[ -z "$(jq -r '.packages | to_entries[] | select((.key | startswith("node_modules")) and (.value | has("resolved") | not)) | .key' < package-lock.json)" ] | |
lint-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: TSC | |
working-directory: web/ | |
run: npm run tsc | |
lint-prettier: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
project: | |
- web | |
- tests/wdio | |
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: prettier | |
working-directory: ${{ matrix.project }}/ | |
run: npm run prettier-check | |
lint-lit-analyse: | |
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 | |
# lit-analyse doesn't understand path rewrites, so make it | |
# belive it's an actual module | |
cd node_modules/@goauthentik | |
ln -s ../../src/ web | |
- name: Generate API | |
run: make gen-client-ts | |
- name: lit-analyse | |
working-directory: web/ | |
run: npm run lit-analyse | |
ci-web-mark: | |
needs: | |
- lint-lockfile | |
- lint-eslint | |
- lint-prettier | |
- lint-lit-analyse | |
- lint-build | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo mark | |
build: | |
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: build | |
working-directory: web/ | |
run: npm run build |