Add .github/workflows/battery.yaml

This commit is contained in:
Zakary Timson 2023-12-06 20:52:27 +00:00
parent 94cbaf7938
commit f533b33ea0

25
.github/workflows/battery.yaml vendored Normal file
View File

@ -0,0 +1,25 @@
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