feat(ui/dashboard): improvement tags and table cell view with tooltip #191
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: pr-ui-dashboard | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "ui/dashboard/**" | |
- "!**/**.md" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: "22.1" | |
WEB_DIRECTORY: "ui/dashboard" | |
jobs: | |
build: | |
defaults: | |
run: | |
working-directory: ${{ env.WEB_DIRECTORY }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Restore cached node_modules | |
uses: actions/cache@v4 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install dependencies | |
run: yarn install | |
- name: Lint | |
run: yarn style:all | |
- name: Build | |
run: yarn build |