This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
recycle: auth guards #287
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
# on push to any branch | |
on: | |
push: | |
branches: | |
- '*' | |
paths: | |
- 'frontend/angular/xpose/**' | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Install Angular CLI | |
run: npm install -g @angular/cli | |
- name: Installing dependencies | |
working-directory: frontend/angular/xpose | |
run: npm install --legacy-peer-deps | |
- name: Run the Configuration Script | |
working-directory: frontend/angular/xpose/src/ | |
run: node config.index.js "the" "quick" "brown" "fox" "jumps" "over" "the" "lazy" "dog" "and" "cat" | |
- name: Building Project | |
working-directory: frontend/angular/xpose | |
run: npm run build |