chore: CVE-2025-55184 and CVE-2025-55183 [patch] (#279) #1397
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: Docker | |
| on: [push, 'pull_request'] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| package_json_file: 'package.json' | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Install chakra-ui types | |
| run: pnpm run chakra-types | |
| - name: Code format check | |
| run: pnpm format:check | |
| - name: Linting | |
| run: pnpm lint | |
| - name: Run Tests | |
| run: pnpm test:ci | |
| - name: Publish coveralls report | |
| uses: coverallsapp/github-action@master | |
| with: | |
| path-to-lcov: 'coverage/lcov.info' | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |