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