First Commit

This commit is contained in:
2025-12-25 10:57:33 +01:00
commit f6a2cac364
672 changed files with 75678 additions and 0 deletions

8
node_modules/i/.github/dependabot.yml generated vendored Normal file
View File

@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10

26
node_modules/i/.github/workflows/ci.yml generated vendored Normal file
View File

@@ -0,0 +1,26 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
types: [opened, reopened, synchronize]
jobs:
test:
name: Tests
strategy:
fail-fast: true
matrix:
node: [4, 6, 8, 10, 12, 14]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install
- name: Test
run: npm test