-first commit
This commit is contained in:
22
node_modules/connect-redis/.github/workflows/build.yml
generated
vendored
Normal file
22
node_modules/connect-redis/.github/workflows/build.yml
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user