Skip to content

[Snyk] Upgrade: tslib, firebase, , angular-cli-ghpages, date-fns, firebase-admin, rxjs, zone.js #56

[Snyk] Upgrade: tslib, firebase, , angular-cli-ghpages, date-fns, firebase-admin, rxjs, zone.js

[Snyk] Upgrade: tslib, firebase, , angular-cli-ghpages, date-fns, firebase-admin, rxjs, zone.js #56

Workflow file for this run

name: Build project
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "18"
- name: Build
run: |
npm install
npm run build --prod
cp www/index.html www/404.html
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "www/"
deploy:
needs: build
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1