Skip to content

Commit 25d0ca9

Browse files
committed
Remove support for Angular16VersionWithRxJs6 & LibWithAngularV16
1 parent 0e5ac6c commit 25d0ca9

1 file changed

Lines changed: 0 additions & 84 deletions

File tree

.github/workflows/build.yml

Lines changed: 0 additions & 84 deletions
Original file line numberDiff line numberDiff line change
@@ -179,87 +179,3 @@ jobs:
179179
- name: Build Angular Application
180180
working-directory: ./angular-auth-oidc-client-test
181181
run: npm run build
182-
183-
Angular16VersionWithRxJs6:
184-
needs: build_job
185-
runs-on: ubuntu-latest
186-
name: Angular 16 & RxJs 6
187-
steps:
188-
- name: Setup Node.js
189-
uses: actions/setup-node@v2
190-
with:
191-
node-version: 20
192-
193-
- name: Download Artefact
194-
uses: actions/download-artifact@v4
195-
with:
196-
name: angular_auth_oidc_client_artefact
197-
path: angular-auth-oidc-client-artefact
198-
199-
- name: Install AngularCLI globally
200-
run: npm install -g @angular/cli@16
201-
202-
- name: Show ng Version
203-
run: ng version
204-
205-
- name: Create Angular Project
206-
run: ng new angular-auth-oidc-client-test --skip-git
207-
208-
- name: npm install RxJs 6
209-
working-directory: ./angular-auth-oidc-client-test
210-
run: npm install rxjs@6.5.3
211-
212-
- name: Npm Install & Install Library from local artefact
213-
run: |
214-
cp -R angular-auth-oidc-client-artefact angular-auth-oidc-client-test/
215-
cd angular-auth-oidc-client-test
216-
npm install --unsafe-perm=true
217-
ng add ./angular-auth-oidc-client-artefact --authority-url-or-tenant-id "my-authority-url" --flow-type "OIDC Code Flow PKCE using refresh tokens" --use-local-package=true --skip-confirmation
218-
219-
- name: Test Angular Application
220-
working-directory: ./angular-auth-oidc-client-test
221-
run: npm test -- --watch=false --browsers=ChromeHeadless
222-
223-
- name: Build Angular Application
224-
working-directory: ./angular-auth-oidc-client-test
225-
run: npm run build
226-
227-
LibWithAngularV16:
228-
needs: build_job
229-
runs-on: ubuntu-latest
230-
name: Angular V16
231-
steps:
232-
- name: Setup Node.js
233-
uses: actions/setup-node@v2
234-
with:
235-
node-version: 18
236-
237-
- name: Download Artefact
238-
uses: actions/download-artifact@v4
239-
with:
240-
name: angular_auth_oidc_client_artefact
241-
path: angular-auth-oidc-client-artefact
242-
243-
- name: Install AngularCLI globally
244-
run: npm install -g @angular/cli@16
245-
246-
- name: Show ng Version
247-
run: ng version
248-
249-
- name: Create Angular Project
250-
run: ng new angular-auth-oidc-client-test --skip-git
251-
252-
- name: Npm Install & Install Library from local artefact
253-
run: |
254-
cp -R angular-auth-oidc-client-artefact angular-auth-oidc-client-test/
255-
cd angular-auth-oidc-client-test
256-
npm install --unsafe-perm=true
257-
ng add ./angular-auth-oidc-client-artefact --authority-url-or-tenant-id "my-authority-url" --flow-type "OIDC Code Flow PKCE using refresh tokens" --use-local-package=true --skip-confirmation
258-
259-
- name: Test Angular Application
260-
working-directory: ./angular-auth-oidc-client-test
261-
run: npm test -- --watch=false --browsers=ChromeHeadless
262-
263-
- name: Build Angular Application
264-
working-directory: ./angular-auth-oidc-client-test
265-
run: npm run build

0 commit comments

Comments
 (0)