Skip to content

feat(docs): update README and index.html for ESM module usage and paths #3

feat(docs): update README and index.html for ESM module usage and paths

feat(docs): update README and index.html for ESM module usage and paths #3

Workflow file for this run

name: CI
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: npm
- name: Install
run: npm ci
- name: Build
run: npm run build
- name: Test with coverage
run: npm run coverage