This commit is contained in:
parent
4f7835ccbe
commit
047174291b
1 changed files with 35 additions and 0 deletions
35
.gitea/workflows/test.yaml
Normal file
35
.gitea/workflows/test.yaml
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
name: Outbag Tests
|
||||||
|
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
services:
|
||||||
|
database:
|
||||||
|
image: mariadb
|
||||||
|
env:
|
||||||
|
MYSQL_DATABASE: outbag
|
||||||
|
MYSQL_USER: outbag
|
||||||
|
MYSQL_PASSWORD: 12345678
|
||||||
|
MYSQL_ROOT_PASSWORD: 12345678
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
- name: Build Outbag
|
||||||
|
run: |
|
||||||
|
mkdir build
|
||||||
|
npm run prepublish
|
||||||
|
npm run bundleRelease
|
||||||
|
- name: Generate Self-Signed Cert
|
||||||
|
run:
|
||||||
|
sh genSelfSignedCert.sh
|
||||||
|
- name: Run Tests
|
||||||
|
run: |
|
||||||
|
node tests/ws.js ci
|
||||||
|
node tests/post.js ci
|
Loading…
Reference in a new issue