Check PR from snipsnipsnip #70
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: Check PR | |
| run-name: Check PR from ${{ github.actor }} | |
| on: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Install Yarn | |
| run: corepack install | |
| - name: Get Yarn cache folder | |
| id: yarn-cache-dir | |
| run: echo "cache-dir=$(corepack yarn config get cacheFolder)" >> $GITHUB_OUTPUT | |
| - name: Restore Yarn cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ${{ steps.yarn-cache-dir.outputs.cache-dir }} | |
| key: yarn-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
| - name: Install dependencies | |
| run: YARN_ENABLE_HARDENED_MODE=0 corepack yarn install --immutable | |
| - name: Lint | |
| run: corepack yarn exec biome ci --error-on-warnings | |
| - name: Check Type | |
| run: corepack yarn run check-type | |
| - name: Test | |
| run: corepack yarn run test:coverage --reporter=junit --reporter=github-actions | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Upload test results to Codecov | |
| if: ${{ !cancelled() }} | |
| uses: codecov/test-results-action@v1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: build/test/result.junit.xml |