This commit is contained in:
parent
9344bb5997
commit
70733a64f2
33
.gitea/workflows/check.yaml
Normal file
33
.gitea/workflows/check.yaml
Normal file
@ -0,0 +1,33 @@
|
||||
name: Test project build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Setup Node.js v20.x
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20.x
|
||||
|
||||
- run: corepack enable
|
||||
|
||||
- name: Checkout repository code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install niimbluelib dependencies
|
||||
run: yarn --cwd niimbluelib
|
||||
|
||||
- name: Build niimbluelib
|
||||
run: yarn --cwd niimbluelib build
|
||||
|
||||
- name: Install niimblue dependencies
|
||||
run: yarn --cwd niimblue
|
||||
|
||||
- name: Check niimblue code
|
||||
run: yarn --cwd niimblue sv-check
|
||||
|
||||
- name: Build niimblue
|
||||
run: yarn --cwd niimblue build
|
||||
|
||||
|
27
.gitignore
vendored
Normal file
27
.gitignore
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
!
|
||||
!/
|
||||
/*
|
||||
!/.gitea
|
||||
!/.gitattributes
|
||||
!/.gitignore
|
||||
!README.md
|
||||
!/niimblue/
|
||||
/niimblue/*
|
||||
!/niimblue/.gitignore
|
||||
!/niimblue/index.html
|
||||
!/niimblue/package.json
|
||||
!/niimblue/README.md
|
||||
!/niimblue/svelte.config.js
|
||||
!/niimblue/tsconfig.json
|
||||
!/niimblue/vite.config.ts
|
||||
!/niimblue/yarn.lock
|
||||
!/niimblue/src
|
||||
!/niimblue/public
|
||||
|
||||
!/niimbluelib/
|
||||
/niimbluelib/*
|
||||
!/niimbluelib/clean-dist.js
|
||||
!/niimbluelib/package.json
|
||||
!/niimbluelib/tsconfig.json
|
||||
!/niimbluelib/yarn.lock
|
||||
!/niimbluelib/src
|
Reference in New Issue
Block a user