Skip to content

chore(deps): bump debug from 4.1.1 to 4.3.4 #90

chore(deps): bump debug from 4.1.1 to 4.3.4

chore(deps): bump debug from 4.1.1 to 4.3.4 #90

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- name: Install dependencies
run: yarn install
- name: Build packages
run: yarn run build
- name: Lint packages
run: yarn run lint
- name: Test packages
run: yarn run test --ci --forceExit --detectOpenHandles --coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}