Skip to content

fix: order mismatch between config and api #66

fix: order mismatch between config and api

fix: order mismatch between config and api #66

Workflow file for this run

name: Tests + Coverage
on:
push:
branches:
- '!develop'
- '!master'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: NPM Install
run: npm ci
- name: Test Node.js ${{ matrix.node-version }}
run: npm run test
- name: Coveralls (Parallel)
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls (Finished)
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true