mirror of
https://github.com/goauthentik/authentik
synced 2026-05-09 16:42:38 +02:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 5. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
92 lines
2.1 KiB
YAML
92 lines
2.1 KiB
YAML
---
|
|
name: 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@v5
|
|
- uses: actions/setup-node@v5
|
|
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@v5
|
|
- uses: actions/setup-node@v5
|
|
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@v5
|
|
- uses: actions/setup-node@v5
|
|
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
|