Initial commit
Some checks failed
tests / build (14.x) (push) Has been cancelled

This commit is contained in:
2025-07-04 18:33:31 +02:00
commit 02c7b32602
120 changed files with 38113 additions and 0 deletions

27
.github/workflows/js.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: tests
on: [push]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
env:
CI: true