Skip to content

chore(deps): bump @tanstack/angular-query-experimental from 5.53.2 to 5.54.1 #41

chore(deps): bump @tanstack/angular-query-experimental from 5.53.2 to 5.54.1

chore(deps): bump @tanstack/angular-query-experimental from 5.53.2 to 5.54.1 #41

Workflow file for this run

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.46.1-noble
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-npm-deps
- name: Install dependencies
run: npm ci
- name: Run tests
working-directory: apps/demo-e2e
run: npx playwright test --project=chromium
- name: Upload test report
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: |
apps/demo-e2e/playwright-report/
apps/demo-e2e/test-results/
retention-days: 7