feat: Universal runtime compatibility for Node.js SDK v8 - fixes import resolution across all target runtimes #16
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: Runtime Compatibility Tests | |
| on: [push, pull_request] | |
| jobs: | |
| runtime-compatibility: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - uses: denoland/setup-deno@v2 | |
| with: | |
| deno-version: v1.x | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install and build | |
| run: | | |
| npm install | |
| npm run build | |
| - name: Runtime compatibility check | |
| run: npm run check:runtimes |