Skip to content

feat: splitting types #193

feat: splitting types

feat: splitting types #193

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- run: pnpm install
- name: Check types
run: pnpm run check:types
- name: Test
run: pnpm run test
- name: Build
run: pnpm run build