Skip to content

build: generate js and dts bundles #995

build: generate js and dts bundles

build: generate js and dts bundles #995

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test
timeout-minutes: 1
env:
FORCE_COLOR: 3
win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm i
- run: npm run build
- run: node ./test/win32.test.js
timeout-minutes: 1
env:
FORCE_COLOR: 3