Add .github/workflows/website.yaml
Some checks failed
Build Website / Build NPM Project (push) Failing after 3s
Some checks failed
Build Website / Build NPM Project (push) Failing after 3s
This commit is contained in:
parent
11a8e0f363
commit
4dc05a1228
33
.github/workflows/website.yaml
vendored
Normal file
33
.github/workflows/website.yaml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user