Skip to content

feat: adding a realistic deployment script for the plugin #5

feat: adding a realistic deployment script for the plugin

feat: adding a realistic deployment script for the plugin #5

Workflow file for this run

name: Lint and Format
on:
workflow_dispatch:
push:
branches: [main]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run lint
run: pnpm run lint