Add .github/workflows/website.yaml
Some checks failed
Build Website / Build NPM Project (push) Failing after 3s

This commit is contained in:
Zakary Timson 2023-12-06 20:57:41 +00:00
parent 11a8e0f363
commit 4dc05a1228

33
.github/workflows/website.yaml vendored Normal file
View File

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