Skip to content

fix: Don't include @rollup/plugin-typescript in the published package.json #32

fix: Don't include @rollup/plugin-typescript in the published package.json

fix: Don't include @rollup/plugin-typescript in the published package.json #32

Workflow file for this run

name: Check for lint/build errors
on:
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: npm install, lint
run: |
npm install
npm run lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: npm install, build
run: |
npm install
npm run build
npm run build:lib