Skip to content

Success/errors wrapper experiment - problem with reduce / async pipelines #179

Success/errors wrapper experiment - problem with reduce / async pipelines

Success/errors wrapper experiment - problem with reduce / async pipelines #179

Workflow file for this run

name: test
on:
push:
branches: [master,next]
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
# runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
# node-version: '14.x'
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- run: yarn install
- run: yarn lint
- run: yarn audit
- run: yarn ci:test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
if: matrix.node-version == '14.x'
continue-on-error: true
# - uses: codecov/codecov-action@v2