Skip to content

Bump braces from 3.0.2 to 3.0.3 #384

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #384

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