homefront/.github/workflows/battery.yaml

25 lines
595 B
YAML
Raw Normal View History

2023-12-06 15:52:27 -05:00
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
2023-12-06 15:52:52 -05:00
working-directory: battery