Skip to content

fix: Export with .mjs extension #24

fix: Export with .mjs extension

fix: Export with .mjs extension #24

Workflow file for this run

name: Pull Request Actions
on:
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Versions used
run: npm run version
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test + coverage
run: npm run cover:ci
- name: Integration Test
run: |
cd test
npm i
npm run test:cjs
npm run test:mjs
npm run test:ts-node16
npm run test:ts-esm-node16