Skip to content

fix(wait-comparison): remove trailing 0 when wait is the same #203

fix(wait-comparison): remove trailing 0 when wait is the same

fix(wait-comparison): remove trailing 0 when wait is the same #203

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: npx --yes [email protected]
- name: Install app dependencies
run: npm ci
- name: Lint frontend code with ESLint
run: npm run lint