chore(deps-dev): bump @vitejs/plugin-react-swc from 3.11.0 to 4.0.0 #115
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
| # This workflow runs on every push to the staging and main branches | |
| # and on pull requests targeting those branches. | |
| # It installs dependencies, runs linting, tests, and builds the project using Bun. | |
| name: 'CI: Pre-Merge Validations' | |
| on: | |
| push: | |
| branches: | |
| - staging | |
| - main | |
| pull_request: | |
| branches: | |
| - staging | |
| - main | |
| # cancel in-progress runs on new commits to same PR (gitub.event.number) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| run: | |
| name: Install, lint, test, and build on Bun ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Bun and install dependencies | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: latest | |
| - name: Install | |
| run: bun install | |
| - name: Lint | |
| run: bun run lint-staged | |
| - name: Test | |
| run: bun run test | |
| - name: Build | |
| run: bun run build |