Skip to content

refactor!: es modules and commonjs build (#1) #2

refactor!: es modules and commonjs build (#1)

refactor!: es modules and commonjs build (#1) #2

Workflow file for this run

name: Lint-Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run test:unit