Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

30
node_modules/columnify/.github/workflows/test.yml generated vendored Normal file
View File

@@ -0,0 +1,30 @@
name: Columnify Unit Tests
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 16.x
- 14.x
- 12.x
- 10.x
steps:
- name: 'Set up Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v1
with:
node-version: '${{ matrix.node-version }}'
cache: 'npm'
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm test