chore(deps): bump the angular group with 16 updates #84
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: Pull Request | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: [main] | |
permissions: | |
contents: read | |
jobs: | |
build_test: | |
name: Run build and unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-npm-deps | |
- name: Lint | |
run: npx --no -- ng lint | |
- name: Build | |
run: | | |
npx --no -- ng build ngx-signal-store-query --configuration=production | |
npx --no -- ng build demo --configuration=production --progress=false --verbose | |
- name: Upload build artefacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-artefacts | |
path: dist/ | |
retention-days: 7 | |
e2e: | |
name: Run E2E tests | |
runs-on: ubuntu-latest | |
container: | |
image: mcr.microsoft.com/playwright:v1.47.2-noble | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
browser: ['chromium', 'firefox', 'webkit'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/install-npm-deps | |
- name: Run tests | |
env: | |
HOME: /root | |
working-directory: apps/demo-e2e | |
run: npx playwright test --project=${{ matrix.browser }} | |
- name: Upload test report | |
if: ${{ !cancelled() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: playwright-${{ matrix.browser }}-report | |
path: | | |
apps/demo-e2e/playwright-report/ | |
apps/demo-e2e/test-results/ | |
retention-days: 7 |