Skip to content

chore(deps): update dependency @angular/common to v16.2.7 #149

chore(deps): update dependency @angular/common to v16.2.7

chore(deps): update dependency @angular/common to v16.2.7 #149

Workflow file for this run

name: Pull Request Workflow
env:
NX_BRANCH: ${{ github.event.number }}
NX_RUN_GROUP: ${{ github.run_id }}
on:
pull_request:
branches:
- main
- beta
- alpha
jobs:
build:
name: Building
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --cache ~/.npm --prefer-offline
- name: Building
run: npm run build -- --base=remotes/origin/${{github.event.pull_request.base.ref}}
env:
CI: true
lint:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- run: git fetch origin ${{github.event.pull_request.base.ref}}
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --cache ~/.npm --prefer-offline
- run: npm run lint -- --base=remotes/origin/${{github.event.pull_request.base.ref}}
env:
CI: true
test:
name: Testing
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
- run: git fetch origin ${{github.event.pull_request.base.ref}}
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --cache ~/.npm --prefer-offline
- run: npm test -- --base=remotes/origin/${{github.event.pull_request.base.ref}}
env:
CI: true