fix(dialog): set nonumber for floating doc #1996
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
if: github.event.pull_request.draft == false | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: "npm" | |
- name: Install Dependencies | |
run: npm install --frozen-lockfile | |
- name: Check Types by TSC | |
run: yarn lint:typecheck | |
- name: Lint ESLint | |
run: yarn lint |