homefront/.github/workflows/battery.yaml
Zakary Timson a2f50f0a24
Some checks failed
Build Website / Build NPM Project (push) Failing after 21s
Update .github/workflows/battery.yaml
2023-12-06 20:52:52 +00:00

25 lines
595 B
YAML

name: Build Website
run-name: Build Website
on:
push:
paths:
- '.github/workflows/battery.yaml'
- 'battery/**'
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: battery
- name: Build Project
run: npm run build
working-directory: battery