-first commit

This commit is contained in:
2025-11-11 12:36:06 +07:00
commit b99c214434
5683 changed files with 713336 additions and 0 deletions

22
node_modules/connect-redis/.github/workflows/build.yml generated vendored Normal file
View File

@@ -0,0 +1,22 @@
name: build
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22, 24]
name: Node v${{ matrix.node }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: sudo apt-get install -y redis-server
- run: npm install
- run: npm run lint
- run: npm test