forked from slides/empowering-django-with-background-workers
Add CI
This commit is contained in:
parent
6d94ec09e4
commit
32b65dc041
1 changed files with 16 additions and 0 deletions
16
.gitea/workflows/ci.yml
Normal file
16
.gitea/workflows/ci.yml
Normal file
|
@ -0,0 +1,16 @@
|
|||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Set up Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: latest
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Build site
|
||||
run: npm run build
|
Loading…
Reference in a new issue