grow-bot/.github/workflows/website.yaml
Zakary Timson 4dc05a1228
Some checks failed
Build Website / Build NPM Project (push) Failing after 3s
Add .github/workflows/website.yaml
2023-12-06 20:57:41 +00:00

34 lines
866 B
YAML

name: Build Website
run-name: Build Website
on:
push:
paths:
- '.github/workflows/website.yaml'
- 'website/**'
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: website
- name: Build Project
run: npm run build
working-directory: website
- name: Upload Artifacts
if: ${{inputs.artifacts}} != "false"
uses: actions/upload-artifact@v3
with:
name: website
path: website/dist
retention-days: 7