Updated map alliance docs & ci/cd
Some checks failed
Build Website / Tag Version (push) Blocked by required conditions
Build Functions / Build NPM Project (push) Successful in 15s
Build Website / Build NPM Project (push) Has been cancelled

This commit is contained in:
2023-12-06 16:25:50 -05:00
parent 9f22092097
commit b2833febc0
16 changed files with 173 additions and 8590 deletions

24
.github/workflows/functions.yaml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: Build Functions
run-name: Build Functions
on:
push:
paths:
- 'functions/**'
jobs:
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: Build Project
run: npm run build
working-directory: functions