Skip to content

feat: bump Angular to v17 #86

feat: bump Angular to v17

feat: bump Angular to v17 #86

Workflow file for this run

name: ci
on:
pull_request:
paths-ignore:
- '*.md'
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install
run: npm i
- name: build
run: npm run nx -- affected:build --base=origin/main --head=HEAD
- name: test
run: npm run nx -- affected:test --base=origin/main --head=HEAD