chore(deps): bump the solana-deps group across 1 directory with 2 updates #126
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 build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build workspace | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Run install | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: install | |
| - name: Run Biome Check | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: biome:verify:all | |
| - name: Run Build | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| run: yarn build | |
| - name: Run Tests | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: test | |
| - name: Install Playwright Chromium | |
| run: yarn playwright install --with-deps chromium | |
| - name: Run Playwright screenshots | |
| uses: borales/actions-yarn@v5 | |
| with: | |
| cmd: test:e2e | |
| - name: Upload Playwright screenshots and failure artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: playwright-artifacts | |
| path: | | |
| tests-playwright/screenshots/ | |
| tests-playwright/artifacts/ | |
| if-no-files-found: warn |