Skip to content

Fix esm

Fix esm #783

Workflow file for this run

name: PR
on: [pull_request]
jobs:
lint:
name: linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'yarn'
- name: lint
run: |
yarn --immutable
yarn lint
test:
name: testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'yarn'
- name: test
run: |
yarn --immutable
yarn test
build_code:
name: build Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
calche: 'yarn'
- name: build
run: |
yarn --immutable
yarn build