Skip to content

docs: add postman api and environment collection, update setup #817

docs: add postman api and environment collection, update setup

docs: add postman api and environment collection, update setup #817

Workflow file for this run

name: Standard Angular App Flow
on:
pull_request:
branches: [ "main" ]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: cd apps/portal && npm install
- name: Run linting
run: cd apps/portal && npm run lint
build:
name: Build
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: cd apps/portal && npm install
- name: Build app
run: cd apps/portal && npm run build:prod