Skip to content

Bump micromatch, babel-jest and jest #53

Bump micromatch, babel-jest and jest

Bump micromatch, babel-jest and jest #53

Workflow file for this run

name: NodeCI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [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, build
run: |
make install
env:
CI: true
- name: Run linter
run: |
make lint
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageCommand: make test-coverage
debug: true