Skip to content

Merge branch 'refactor/ngrx' into 'main' #1

Merge branch 'refactor/ngrx' into 'main'

Merge branch 'refactor/ngrx' into 'main' #1

Workflow file for this run

name: Angular CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install Angular CLI
run: npm install -g @angular/cli
- name: Install Dependencies
run: npm ci
- name: Run ESLint
run: ng lint
- name: Build
run: ng build --configuration=production