88 types : [opened, synchronize, reopened, closed]
99 branches :
1010 - main
11- - releaseV12-WIP
1211
1312jobs :
1413 build_job :
@@ -20,19 +19,19 @@ jobs:
2019 with :
2120 submodules : true
2221
23- - name : Setup Node.js 14.15
24- uses : actions/setup-node@v1
22+ - name : Setup Node.js
23+ uses : actions/setup-node@v2
2524 with :
26- node-version : 14.15
25+ node-version : 16
2726
2827 - name : Installing Dependencies
29- run : sudo npm install
28+ run : npm install
3029
3130 - name : Linting Frontend
32- run : sudo npm run lint-lib
31+ run : npm run lint-lib
3332
3433 - name : Testing Frontend
35- run : sudo npm run test-lib-ci
34+ run : npm run test-lib-ci
3635
3736 - name : Coveralls
3837 uses : coverallsapp/github-action@master
4746 parallel-finished : true
4847
4948 - name : Building Frontend
50- run : sudo npm run build-lib-prod
49+ run : npm run build-lib-prod
50+
51+ - name : Copying essential additional files
52+ run : npm run copy-files
5153
5254 - name : Create new Angular Project and install lib in it, test it and build it
5355 run : |
6567 npm test -- --watch=false --browsers=ChromeHeadless
6668 sudo npm run build
6769
68- - name : Create new Angular Project (RxJs 6) and use the schematics to add a module
69- run : |
70- cd ..
71- echo '=== Current Directory ==='
72- ls
73- sudo npm install -g @angular/cli
74- echo 'Creating new angular project'
75- sudo ng new testProjectSchematicRxJs6 --skip-git --skip-install
76- cd testProjectSchematicRxJs6
77- echo '=== Current Directory ==='
78- ls
79- sudo npm install --unsafe-perm=true
80- sudo npm install rxjs@6.5.3
81- sudo ng add ../angular-auth-oidc-client/dist/angular-auth-oidc-client --authority-url-or-tenant-id "my-authority-url" --flow-type "OIDC Code Flow PKCE using iframe silent renew" --use-local-package=true --skip-confirmation
82- npm test -- --watch=false --browsers=ChromeHeadless
83- sudo npm run build
84-
85- - name : Create new Angular Project (RxJs 7) and use the schematics to add a module
70+ - name : Create new Angular Project and use the schematics to add a module
8671 run : |
8772 cd ..
8873 echo '=== Current Directory ==='
0 commit comments