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

60 lines
1.3 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]
2021-11-20 12:55:00 +00:00
env:
NODE_VERSION: 16
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: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
2021-09-27 08:56:35 +00:00
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
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:
command: [lint, test, build]
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 }}