Skip to content

Bump ava from 5.3.1 to 6.1.2 #256

Bump ava from 5.3.1 to 6.1.2

Bump ava from 5.3.1 to 6.1.2 #256

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
redis-version: [4, 5, 6, 7]
name: Node ${{ matrix.node-version }} - Redis ${{ matrix.redis-version }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
with:
redis-version: ${{ matrix.redis-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
env:
CI: true