This repository was archived by the owner on Apr 16, 2026. It is now read-only.
chore(deps): update autofix-ci/action digest to 635ffb0 #1027
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: Main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-test: | |
| name: π Main | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: npm i -g --force corepack && corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: pnpm | |
| - name: π¦ Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: π Lint | |
| run: pnpm lint | |
| - name: π Build | |
| run: pnpm build | |
| # - name: π§ͺ Test | |
| # run: pnpm test | |
| # env: | |
| # VITE_TEST_DB_URL: ${{ secrets.VITE_TEST_DB_URL }} | |
| - name: π§ͺ Test with coverage | |
| run: pnpm coverage | |
| env: | |
| VITE_TEST_DB_URL: ${{ secrets.VITE_TEST_DB_URL }} | |
| - name: π Upload coverage | |
| if: always() | |
| uses: davelosert/vitest-coverage-report-action@v2 |