map-alliance/.github/workflows/functions.yaml
ztimson b2833febc0
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
Updated map alliance docs & ci/cd
2023-12-06 16:25:50 -05:00

25 lines
481 B
YAML

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