chore(deps): update dependency @biomejs/biome to v2.5.6 #1474
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: Smoke | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: smoke-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| smoke: | |
| runs-on: depot-ubuntu-24.04-4 | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6 | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: 24 | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - name: Build Node bundle | |
| run: pnpm build | |
| - name: Build pkg binary | |
| run: pnpm exec pkg dist/cli.cjs --config package.json --compress Brotli --target node24-linux-x64 --output dist/resend | |
| - name: Smoke test Node bundle | |
| run: | | |
| node dist/cli.cjs --version | |
| node dist/cli.cjs --help | |
| - name: Smoke test pkg binary | |
| run: | | |
| ./dist/resend --version | |
| ./dist/resend --help |