Skip to content

Bump braces, @babel/cli and jest #65

Bump braces, @babel/cli and jest

Bump braces, @babel/cli and jest #65

Workflow file for this run

name: Node CI
on:
- push
jobs:
buildAndTest:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [13.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: Install, build
run: |
make install
make build
- 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