Skip to content

Feature/examples and types #8

Feature/examples and types

Feature/examples and types #8

Workflow file for this run

name: pr
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches: [main]
permissions:
contents: read
jobs:
pr:
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