Skip to content

Don't plugging third-party Promise library for ioredis in RedisTransporter #933

Don't plugging third-party Promise library for ioredis in RedisTransporter

Don't plugging third-party Promise library for ioredis in RedisTransporter #933

Workflow file for this run

name: CI test
on:
push:
branches:
- '**'
paths-ignore:
- 'benchmark/**'
- 'dev/**'
- 'examples/**'
- '*.md'
pull_request:
branches:
- master
paths-ignore:
- 'benchmark/**'
- 'dev/**'
- 'examples/**'
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Disable proto
if: ${{ matrix.node-version != '10.x' }}
run: export NODE_OPTIONS=--disable-proto=delete
- name: Install dependencies
run: npm ci
- name: Execute unit tests
run: npm run test
- name: Execute Typescript tests
run: npm run test:ts
- name: Execute ESM tests
run: npm run test:esm
if: ${{ matrix.node-version != '10.x' }}
- name: Upload code coverage
run: npm run coverall
if: github.ref == 'refs/heads/master'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}