Bump @biomejs/biome from 2.3.2 to 2.3.4 #705
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: ci | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**.md" | |
| - "LICENSE" | |
| - "NOTICE" | |
| # branches-ignore: | |
| # - "feature/pnpm" | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| node: ["18", "20", "22", "24"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: rustup update stable && rustup target add wasm32-unknown-unknown | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - run: pnpm --version | |
| - run: pnpm install | |
| - run: pnpm run typecheck | |
| - run: pnpm run build | |
| - run: pnpm run lint | |
| - name: Slack Notification | |
| if: failure() | |
| uses: rtCamp/action-slack-notify@v2 | |
| env: | |
| SLACK_CHANNEL: media-processors | |
| SLACK_COLOR: danger | |
| SLACK_TITLE: Failure test | |
| SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} |