Skip to content

chore: cleanup tool interfaces #58

chore: cleanup tool interfaces

chore: cleanup tool interfaces #58

Workflow file for this run

name: Build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install pnpm
run: npm install -g pnpm
working-directory: frontend
- name: Install dependencies
run: pnpm install
working-directory: frontend
- name: Build project
run: pnpm build
working-directory: frontend