-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (34 loc) · 935 Bytes
/
angular-client.yml
File metadata and controls
42 lines (34 loc) · 935 Bytes
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
name: Angular - client
on:
push:
branches: [ master, feature/** ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: Open.IdentityServer/ClientApp
strategy:
matrix:
node_version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
working-directory: ${{ env.working-directory }}
run: npm ci
- name: Build
working-directory: ${{ env.working-directory }}
run: |
npm run build