Updated angular version to latest
Some checks failed
Build Functions / Build NPM Project (push) Successful in 18s
Build Website / Build NPM Project (push) Failing after 24s
Build Website / Tag Version (push) Has been skipped
Build Website / Build & Push Dockerfile (push) Has been skipped

This commit is contained in:
2023-12-11 21:32:05 -05:00
parent f62bbe1467
commit b0d74321c8
48 changed files with 21875 additions and 1240 deletions

View File

@@ -2,23 +2,24 @@ name: Build Functions
run-name: Build Functions
on:
push:
paths:
- 'functions/**'
push:
paths:
- 'firebase/**'
- 'functions/**'
jobs:
build:
name: Build NPM Project
runs-on: ubuntu-latest
container: node
steps:
- name: Clone Repository
uses: ztimson/actions/clone@develop
build:
name: Build NPM Project
runs-on: ubuntu-latest
container: node
steps:
- name: Clone Repository
uses: ztimson/actions/clone@develop
- name: Install Dependencies
run: npm i
working-directory: functions
- name: Install Dependencies
run: npm i
working-directory: functions
- name: Build Project
run: npm run build
working-directory: functions
- name: Build Project
run: npm run build
working-directory: functions