diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b1ce32d..5dac34d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,9 +5,9 @@ name: Node.js CI on: push: - branches: [ "master" ] + branches: [ "master", "development" ] pull_request: - branches: [ "master" ] + branches: [ "master", "development" ] jobs: build: @@ -16,7 +16,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x, 20.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: @@ -27,5 +27,5 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - - run: npm run build --if-present - - run: npm test + - run: ng lint + - run: ng run-many --all --target=test -- --no-watch --no-progress --browsers=ChromeHeadlessCI