Merge pull request #1603 from actnwit/fix/simple-mode-webvr-in-webvr #41
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: 'Biome Check' | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| branches: | |
| - develop | |
| - main | |
| jobs: | |
| biome: | |
| name: 'Code Quality Check' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout repository' | |
| uses: actions/checkout@v4 | |
| - name: 'Enable Corepack' | |
| run: corepack enable # enable yarn v4 | |
| - name: 'Setup Node.js' | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'yarn' | |
| - name: 'Install dependencies' | |
| run: yarn install --frozen-lockfile | |
| - name: 'Run Biome linting' | |
| run: yarn lint | |
| - name: 'Run Biome formatting check' | |
| run: yarn format | |
| - name: 'Run Biome comprehensive check' | |
| run: yarn check |