Skip to content

Integrate latest changes from v5 branch, fix CI and tests #138

Integrate latest changes from v5 branch, fix CI and tests

Integrate latest changes from v5 branch, fix CI and tests #138

Workflow file for this run

# Runs ioredis lint, build, and test steps in docker.
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches:
- master
- release
- greenkeeper**
pull_request:
branches:
- master
- release
- dmaier*
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# See https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#using-environment-variables-in-a-matrix
strategy:
fail-fast: false
matrix:
include:
# Need a new enough git version to install the npm husky module.
- NODE_VERSION: 8-buster
- NODE_VERSION: 10-buster
- NODE_VERSION: 12-bullseye
- NODE_VERSION: 14-bullseye
- NODE_VERSION: 16-bullseye
- NODE_VERSION: 20-bullseye
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Runs a single command using the runners shell
- name: Build and test in docker
run: bash test/docker/main.sh ${{ matrix.NODE_VERSION }}