-
Notifications
You must be signed in to change notification settings - Fork 13
56 lines (47 loc) · 1.63 KB
/
lint-and-test.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: Lint and test
on:
push:
branches: [master, '[0-9]+.[0-9]+.x', release]
pull_request:
branches: [master, '[0-9]+.[0-9]+.x', release]
jobs:
lint-and-test-angular-v2:
runs-on: [ubuntu-latest]
environment: QA02
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Create test config
working-directory: ./build
shell: pwsh
run: ./create-test-config.ps1
env:
TestApiServer: ${{ vars.TESTAPISERVER }}
TestCustomerAlias: ${{ vars.TESTCUSTOMERALIAS }}
TestIdentityClientId: ${{ secrets.TESTIDENTITYCLIENTID }}
TestIdentitySecret: ${{ secrets.TESTIDENTITYSECRET }}
TestIdentityServer: ${{ vars.TESTIDENTITYSERVER }}
TestInstanceUrl: ${{ vars.TESTINSTANCEURL }}
TestPassword: ${{ secrets.TESTPASSWORD }}
TestUsername: ${{ secrets.TESTUSERNAME }}
- name: npm ci
working-directory: ./src/picturepark-sdk-v2-angular
run: npm ci
- name: Lint Angular SDK V2
working-directory: ./src/picturepark-sdk-v2-angular
run: npm run lint
- name: Build Angular SDK V2
working-directory: ./src/picturepark-sdk-v2-angular
run: |
npm run build-libraries
npm run build-app
npm run build-share-viewer
- name: Run tests Angular SDK V2
working-directory: ./src/picturepark-sdk-v2-angular
run: npm run test-nowatch