keycloak-scim/.github/workflows/main.yml

81 lines
2.1 KiB
YAML
Raw Normal View History

2021-09-24 13:47:36 +00:00
name: CI
on:
push:
2021-11-02 08:04:32 +00:00
branches: [main]
2021-09-24 13:47:36 +00:00
pull_request:
2021-11-02 08:04:32 +00:00
branches: [main]
concurrency:
# Only cancel jobs for new commits on PRs, and always do a complete run on other branches (e.g. `main`).
# See: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
group: main-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
2021-11-20 12:55:00 +00:00
env:
NODE_VERSION: 18
2021-09-24 13:47:36 +00:00
jobs:
2021-09-27 08:56:35 +00:00
setup:
2021-09-24 13:47:36 +00:00
runs-on: ubuntu-latest
steps:
- name: Check out Admin UI
uses: actions/checkout@v3
2021-09-24 13:47:36 +00:00
- name: Set up Node
uses: actions/setup-node@v3
2021-09-24 13:47:36 +00:00
with:
2021-11-20 12:55:00 +00:00
node-version: ${{ env.NODE_VERSION }}
2021-09-24 13:47:36 +00:00
check-latest: true
cache: npm
2021-09-27 08:56:35 +00:00
- name: Install dependencies
run: npm ci
2021-09-27 08:56:35 +00:00
- name: Cache setup
uses: actions/cache@v3
2021-09-27 08:56:35 +00:00
with:
path: ./*
key: ${{ github.sha }}
run:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
include:
# Admin UI
- workspace: admin-ui
command: lint
- workspace: admin-ui
command: test
- workspace: admin-ui
command: build
- workspace: admin-ui
# Account UI
command: cy:check-types
- workspace: account-ui
command: lint
- workspace: account-ui
command: build
# Keycloak Admin Client
- workspace: "@keycloak/keycloak-admin-client"
command: lint
- workspace: "@keycloak/keycloak-admin-client"
command: build
# Keycloak Masthead
- workspace: keycloak-masthead
command: lint
- workspace: keycloak-masthead
command: build
2021-09-27 08:56:35 +00:00
steps:
- name: Restore setup
uses: actions/cache@v3
2021-09-27 08:56:35 +00:00
with:
path: ./*
key: ${{ github.sha }}
- name: Set up Node
uses: actions/setup-node@v3
2021-09-27 08:56:35 +00:00
with:
2021-11-20 12:55:00 +00:00
node-version: ${{ env.NODE_VERSION }}
2021-09-27 08:56:35 +00:00
- name: Run ${{ matrix.command }} task
run: npm run ${{ matrix.command }} --workspace=${{ matrix.workspace }}