Skip to content

fixed minor issues

fixed minor issues #11

Workflow file for this run

name: Deploy Angular App #pipeline
on:
push:
branches:
- master # Adjust this branch name to your main branch
jobs:
deploy:
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: 20 # Adjust this to your Node.js version
- name: Install Dependencies
run: npm install
- name: Build Angular App
run: npm run build --prod
- name: Deploy to GitHub Pages
run: |
npx ngh --dir=dist/pdf-removal