Skip to content

Merge pull request #289 from rdmurphy/dependabot/npm_and_yarn/braces-… #385

Merge pull request #289 from rdmurphy/dependabot/npm_and_yarn/braces-…

Merge pull request #289 from rdmurphy/dependabot/npm_and_yarn/braces-… #385

Workflow file for this run

name: Node CI
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18]
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: npm install
run: npm ci
- name: Run tests
run: npm run test:cov
- name: Coverage
uses: coverallsapp/github-action@master
env:
COVERALLS_FLAG_NAME: ${{ matrix.node-version }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true