Gitea Actions configuration
Some checks failed
Validate Build / validate-build (push) Failing after 42s
Some checks failed
Validate Build / validate-build (push) Failing after 42s
This commit is contained in:
19
.gitea/workflows/build.yml
Normal file
19
.gitea/workflows/build.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
name: Validate Build
|
||||
|
||||
on: [pull_request, push]
|
||||
|
||||
jobs:
|
||||
validate-build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v5
|
||||
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm Install
|
||||
|
||||
- name: Run Gulp tasks
|
||||
run: npx gulp
|
||||
Reference in New Issue
Block a user