Package compatibility canary #1
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: Package compatibility canary | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "41 5 * * 3" | |
| concurrency: | |
| group: package-compatibility-canary | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| node-current: | |
| name: npm latest / ${{ matrix.os }} / Node 26 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2 | |
| with: | |
| bun-version: "1.3.5" | |
| - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 | |
| with: | |
| node-version: "26" | |
| package-manager-cache: false | |
| - run: npm install --global npm@12.0.1 | |
| - name: Install and execute npm latest | |
| run: bun scripts/release/consumer-smoke.ts smoke --version latest |