Skip to content

feat: add slash menu #6

feat: add slash menu

feat: add slash menu #6

Workflow file for this run

# write a workflow for building the package with nodejs and yarn
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: yarn install
- name: Run the Build
run: yarn run build