Skip to content

docs(paper): fix the default elevation value #410

docs(paper): fix the default elevation value

docs(paper): fix the default elevation value #410

Workflow file for this run

# This is a Github Workflow that runs lint, formatter and unit tests on every
# push and pull request.
name: Quality
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: Checking code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Installing dependencies
run: yarn install --immutable --immutable-cache
- name: Starting TurboRepo local cache server
uses: dtinth/setup-github-actions-caching-for-turbo@v1
- name: Checking linter
run: yarn run -T turbo run --continue lint --filter=!//
- name: Checking format
run: yarn run -T turbo run --continue format --filter=!//
- name: Checking typings
run: yarn run -T turbo run --continue types:check