Skip to content

chore: 🤖 update to angular 16 #10

chore: 🤖 update to angular 16

chore: 🤖 update to angular 16 #10

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
jobs:
setup:
name: Setup
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18.x'
cache: 'npm'
- name: Install dependencies
run: npm install --frozen-lockfile
- name: Lint
run: npm run affected:lint
- name: Test
run: npm run affected:test
- name: Build
run: npm run affected:build