Skip to content

Angular 17

Angular 17 #58

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
if: ${{ github.base_ref == 'main' }}
with:
ref: ${{ github.base_ref }}
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run format:check
- run: npm run lint