This commit is contained in:
parent
297521efdc
commit
b94e4f9c57
21
.gitea/workflows/build.yml
Normal file
21
.gitea/workflows/build.yml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Build Site
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- develop
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- 'feat/**'
|
||||||
|
- 'develop'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
Build-Site:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: '16.x'
|
||||||
|
- run: npm install
|
||||||
|
- run: npm build
|
Loading…
Reference in New Issue
Block a user