This repository was archived by the owner on Feb 9, 2026. It is now read-only.
build(deps): bump tailwindcss from 4.1.16 to 4.1.17 in /frontend #168
Workflow file for this run
This file contains hidden or 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: CI | |
| on: push | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 1 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: pnpm setup | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 | |
| with: | |
| package_json_file: frontend/package.json | |
| - name: Install dependencies | |
| run: pnpm install | |
| working-directory: frontend | |
| - name: Format and Lint | |
| run: pnpm run check | |
| working-directory: frontend | |
| - name: Test | |
| run: pnpm run test | |
| working-directory: frontend | |
| - name: Build | |
| run: pnpm run build | |
| working-directory: frontend |