-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (45 loc) · 1.24 KB
/
rebuild.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
name: Rebuild
on:
push:
branches: [master]
pull_request:
branches: [master]
release:
types: [published]
jobs:
build-frontend:
strategy:
matrix:
node: [14, 16, 18]
os: [ubuntu-latest, macos-latest]
name: Rebuild frontend with nodejs ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install Angular cli
run: npm i -g @angular/cli
- name: Rebuild frontend
run: bash rebuild.sh frontend
build-backend:
strategy:
matrix:
node: [14, 16, 18]
os: [ubuntu-latest, macos-latest]
name: Rebuild backend with nodejs ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
cache-dependency-path: backend/package-lock.json
- name: Rebuild backend
run: bash rebuild.sh backend