Skip to content

fix: *.umd.cjs path #16

fix: *.umd.cjs path

fix: *.umd.cjs path #16

Workflow file for this run

name: Test
on: [push, pull_request, workflow_call]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js modules
run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test