Skip to content

Add Support for CommonJS #28

Add Support for CommonJS

Add Support for CommonJS #28

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 21
- 20
- 18
- 16
- 14
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
npm install
- name: Run Tests
run: |
npm run test