Skip to content

fix: limit time picker presets #2322

fix: limit time picker presets

fix: limit time picker presets #2322

Workflow file for this run

name: JS Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
js-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.18'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn
- name: Install Webapp dependencies
run: yarn install --frozen-lockfile
- run: yarn build
- name: Run Format check
run: yarn format:check
- name: Run Lint
# Use use --quiet so that it only report errors
run: yarn lint:quiet
- name: Run Type check
run: yarn type-check