Test build workflow
This commit is contained in:
parent
f48ef67fd2
commit
afdc3ce24e
1 changed files with 14 additions and 0 deletions
14
.gitea/workflows/build.yml
Normal file
14
.gitea/workflows/build.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: Build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup node
|
||||
uses: https://github.com/actions/setup-node@v3
|
||||
- name: Install node packages
|
||||
run: npm ci
|
||||
- name: Build project
|
||||
run: npm run build
|
||||
Loading…
Reference in a new issue