Skip to content

fix: make plugin installable from git via source entry and prepack #2

fix: make plugin installable from git via source entry and prepack

fix: make plugin installable from git via source entry and prepack #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Type-check
run: npm run typecheck
- name: Build
run: npm run build
- name: Unit tests
run: npm test