init
Some checks failed
tests / build (14.x) (push) Failing after 3m45s

This commit is contained in:
2025-09-05 18:39:49 +02:00
commit b343de3014
190 changed files with 42779 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