Skip to content

build: add rimraf to build scripts #33

build: add rimraf to build scripts

build: add rimraf to build scripts #33

name: Build Framework
on:
push:
branches: [ main ]
paths:
- packages/framework/**
workflow_dispatch:
jobs:
build:
name: Test Framework Build
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm --filter framework... install
- name: Build framework
run: pnpm exec lerna run build --scope=@nyx-discord/framework