Skip to content

feat:add Redis hashtag in elevated limit keys #27

feat:add Redis hashtag in elevated limit keys

feat:add Redis hashtag in elevated limit keys #27

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d --build
- name: Install node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm run test
- name: Stop containers
run: docker-compose -f "docker-compose.yml" down