Skip to content

build: clean up unused babel dependencies and tsup external configura… #5

build: clean up unused babel dependencies and tsup external configura…

build: clean up unused babel dependencies and tsup external configura… #5

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build packages
run: npm run build
- name: Run unit tests
run: npm run test