Skip to content

prepare publish

prepare publish #1

Workflow file for this run

name: Lint and Build
on:
release:
types: [created]
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Type check
run: npm run type-check
- name: Build package
run: npm run build:mesh