Skip to content

Bump minimatch and react-scripts #2291

Bump minimatch and react-scripts

Bump minimatch and react-scripts #2291

Workflow file for this run

name: Unit tests and coverage
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["16"]
name: Jest unit tests and coveralls push
steps:
- uses: actions/checkout@v3
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies and coveralls
run: |
npm ci
npm install coveralls
- name: Run unit tests and save coverage
run: CI=true npm test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./coverage/lcov.info