Skip to content

Build

Build #255

Workflow file for this run

name: Build
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
build:
name: "Build"
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4"
- name: "Build the plugin"
shell: "bash"
run: |
cd "${{ github.workspace }}"
npm install
npm run build