Skip to content

fixed front end bug with timer pauses through deleting dependency ont… #65

fixed front end bug with timer pauses through deleting dependency ont…

fixed front end bug with timer pauses through deleting dependency ont… #65

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: yarn install --frozen-lockfile
id: install
- name: Run prettier
run: yarn format:check
- name: Run ESLint
run: yarn lint:check
# Always run the linter, even if prettier failed
if: ${{ steps.install.outcome == 'success' }}