Skip to content

Fix: check if connections exist before closing them #48

Fix: check if connections exist before closing them

Fix: check if connections exist before closing them #48

Workflow file for this run

name: Test
on: pull_request
jobs:
code:
name: Test code
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Run ESLint
run: yarn lint
- name: Run Jest
run: yarn test --coverage