Skip to content

Use mktemp -d in the browser bundling example. #1

Use mktemp -d in the browser bundling example.

Use mktemp -d in the browser bundling example. #1

Workflow file for this run

name: Test
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18.x # LTS as of 2023-11
- 20.x # current as of 2023-11
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: npm install
- run: npm run build
- run: npm run lint
- run: npm run test
- run: npm run examples:node
- run: npm run examples:bun
- run: npm run examples:esbuild