chore(deps): update dependency @biomejs/biome to v2.3.1 #1487
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: internal | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| file: | |
| - common | |
| - all-opt-out | |
| - no-docker | |
| - no-e2e | |
| - no-otel | |
| - no-stripe | |
| - no-sample-code | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/setup-node | |
| - if: ${{ github.ref_name == 'main' }} | |
| run: echo "IS_MAIN_BRANCH=true" >> $GITHUB_ENV | |
| - run: pnpm exec playwright install chromium | |
| - run: cd ./.internal/tests && make run-${{ matrix.file }} | |
| env: | |
| # to fetch this repo via CLI on main branch | |
| IS_MAIN_BRANCH: ${{ env.IS_MAIN_BRANCH }} | |
| IS_LOCAL: false |