|
| 1 | +name: Run JS tests |
| 2 | +on: |
| 3 | + - push |
| 4 | + - pull_request |
| 5 | +jobs: |
| 6 | + bun: |
| 7 | + name: Bun |
| 8 | + runs-on: ubuntu-latest |
| 9 | + steps: |
| 10 | + - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 |
| 11 | + - uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2.0.1 |
| 12 | + - run: bun install |
| 13 | + - run: bun run build |
| 14 | + - run: bun test/index.js |
| 15 | + deno: |
| 16 | + name: Deno |
| 17 | + runs-on: ubuntu-latest |
| 18 | + steps: |
| 19 | + - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 |
| 20 | + - uses: denoland/setup-deno@909cc5acb0fdd60627fb858598759246509fa755 # v2.0.2 |
| 21 | + - run: deno install |
| 22 | + - run: deno task build |
| 23 | + - run: deno --allow-env --allow-read --allow-write test/index.js |
| 24 | + lint: |
| 25 | + name: Lint |
| 26 | + runs-on: ubuntu-latest |
| 27 | + steps: |
| 28 | + - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 |
| 29 | + - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 |
| 30 | + with: |
| 31 | + registry-url: 'https://registry.npmjs.org' |
| 32 | + cache: npm |
| 33 | + - run: npm install |
| 34 | + - run: npm run build --if-present |
| 35 | + - run: npm run lint --if-present |
| 36 | + node: |
| 37 | + name: Node v${{ matrix.node }} |
| 38 | + runs-on: ubuntu-latest |
| 39 | + strategy: |
| 40 | + matrix: |
| 41 | + node: [14, 16, 18, 20, 22] |
| 42 | + steps: |
| 43 | + - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 |
| 44 | + - name: Use Node.js ${{ matrix.node }} |
| 45 | + uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 |
| 46 | + with: |
| 47 | + node-version: ${{ matrix.node }} |
| 48 | + registry-url: 'https://registry.npmjs.org' |
| 49 | + cache: npm |
| 50 | + - run: npm install |
| 51 | + - run: npm run build --if-present |
| 52 | + - run: npm test |
| 53 | + coverage: |
| 54 | + name: Measure coverage on Node |
| 55 | + runs-on: ubuntu-latest |
| 56 | + steps: |
| 57 | + - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4 |
| 58 | + - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 |
| 59 | + with: |
| 60 | + registry-url: 'https://registry.npmjs.org' |
| 61 | + cache: npm |
| 62 | + - run: npm install |
| 63 | + - run: npm run build --if-present |
| 64 | + - run: npm run test:coverage --if-present |
0 commit comments