2c8f8b9e13
* root: lock node to 20.5 there are apparently some breaking issues in 20.6 with babel https://github.com/babel/babel/issues/15927 Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use same version of setup-node everywhere Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
71 lines
1.6 KiB
YAML
71 lines
1.6 KiB
YAML
name: authentik-ci-website
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- next
|
|
- version-*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
lint-prettier:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20.5"
|
|
cache: "npm"
|
|
cache-dependency-path: website/package-lock.json
|
|
- working-directory: website/
|
|
run: npm ci
|
|
- name: prettier
|
|
working-directory: website/
|
|
run: npm run prettier-check
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20.5"
|
|
cache: "npm"
|
|
cache-dependency-path: website/package-lock.json
|
|
- working-directory: website/
|
|
run: npm ci
|
|
- name: test
|
|
working-directory: website/
|
|
run: npm test
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: ${{ matrix.job }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
job:
|
|
- build
|
|
- build-docs-only
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20.5"
|
|
cache: "npm"
|
|
cache-dependency-path: website/package-lock.json
|
|
- working-directory: website/
|
|
run: npm ci
|
|
- name: build
|
|
working-directory: website/
|
|
run: npm run ${{ matrix.job }}
|
|
ci-website-mark:
|
|
needs:
|
|
- lint-prettier
|
|
- test
|
|
- build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo mark
|