-
Notifications
You must be signed in to change notification settings - Fork 423
56 lines (48 loc) · 1.36 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
DEFAULT_NODE_VERSION: "16"
jobs:
setup:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["14", "16"]
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
check-latest: true
cache: npm
- name: Cache Node modules
id: cache-node-modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: npm ci
# TODO: Split the linting into a separate job.
- name: Run lint task
# Only run this step for the default Node version.
if: matrix.node-version == env.DEFAULT_NODE_VERSION
run: npm run lint
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
- name: Start Keycloak server
run: npm run server:start &
- name: Wait for Keycloak server
run: ./scripts/wait-for-server.sh
- name: Run tests
run: ./run-tests.sh