PP9-21429: Do not replace url but assign #462
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |