Skip to content

chore(migrate to nx v17): updated nx from 16 to 17 and angular packag… #38

chore(migrate to nx v17): updated nx from 16 to 17 and angular packag…

chore(migrate to nx v17): updated nx from 16 to 17 and angular packag… #38

Workflow file for this run

name: CI
on:
pull_request:
env:
CI: true
jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '17'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: nrwl/nx-set-shas@v3
- run: npm ci
- run: npx nx format:check
- run: npx nx affected -t lint --parallel=3
- run: npx nx affected -t test --parallel=3 --configuration=ci
- run: npx nx affected -t build --parallel=3