Skip to content

fix: del client conf #101

fix: del client conf

fix: del client conf #101

Workflow file for this run

name: Testing and Linting
on: [push]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
run: yarn install
- name: Run Lint Checks
run: yarn lint
- name: Run Tests
run: yarn test