Skip to content

release 1.0.1

release 1.0.1 #3

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: src/package-lock.json
- name: Install dependencies
run: |
cd src
npm ci
- name: Build plugin
run: |
cd src
npm run build
- name: Verify build artifacts
run: |
cd src
ls -la *.js *.d.ts
echo "✅ Plugin built successfully"