Skip to content

Merge pull request #89 from femioladeji/fix-bug-private-channel #27

Merge pull request #89 from femioladeji/fix-bug-private-channel

Merge pull request #89 from femioladeji/fix-bug-private-channel #27

Workflow file for this run

name: Unit testing
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Install Dependencies
run: yarn install
- name: Test
run: yarn test