Skip to content

Try to fix deploy

Try to fix deploy #15

Workflow file for this run

name: Deploy
on:
push:
branches: ['main']
workflow_dispatch:
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run build
- name: Remove node_modules
run: rm -rf ./node_modules