fix: add tooltip to show full tag name for tags #5781
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: | |
- main | |
pull_request: | |
paths: | |
- "Makefile" | |
- "**.jsx?" | |
- "**.tsx?" | |
- "**/.babelrc" | |
- "**/.eslint*" | |
- "**/.prettierrc*" | |
- "**/package.json" | |
- "**/github/workflows/lint.yml" | |
permissions: | |
contents: read | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master | |
- uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- run: npm i | |
- run: npm run lint:eslint |