Skip to content

fix: remove deprecated code #110

fix: remove deprecated code

fix: remove deprecated code #110

Workflow file for this run

name: ESLint
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
Testing:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install modules
run: yarn install
# Runs a single command using the runners shell
- name: Runs ESLint against everything
run: yarn lint
- name: Create fake config
run: cp config.example.json config.json
- name: Run Jest
run: yarn test