Initial commit

This commit is contained in:
2023-09-21 14:32:35 +00:00
commit ed8dcebcb7
51 changed files with 8243 additions and 0 deletions

35
.github/workflows/build_and_check.yml vendored Normal file
View File

@ -0,0 +1,35 @@
name: Build, check & Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check
run: npm run check
- name: Prepare Tests
run: npm run install:test
- name: Test
run : npm run test