Skip to content

feat: Move to ESM

feat: Move to ESM #31

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
- name: npm install, lint, build, and test
run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
yarn install --immutable
yarn lint
yarn build
yarn test --coverage
env:
NPM_TOKEN: ${{secrets.npm_token}}
CI: true