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

91 lines
2.5 KiB
YAML
Raw Normal View History

2021-09-24 13:47:36 +00:00
name: CI
on:
push:
2022-12-01 12:07:17 +00:00
branches: [main, release/**]
2021-09-24 13:47:36 +00:00
pull_request:
2022-12-01 12:07:17 +00:00
branches: [main, release/**]
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:
2022-12-01 11:16:10 +00:00
- name: Check out repository
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 }}
dependabot:
needs: [run]
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request' }}
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash --repo $GITHUB_REPOSITORY
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}