Skip to content

feat: implement basic plugin build check #1

feat: implement basic plugin build check

feat: implement basic plugin build check #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build plugin
run: yarn build
- name: Verify plugin
run: yarn verify