Skip to content

chore: reversions

chore: reversions #49

Workflow file for this run

name: Backend / Build
on:
push:
branches:
- main
paths:
- "backend/**/*"
- "package.json"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: pnpm/action-setup@v2
- run: pnpm i --filter=backend
- run: pnpm run --filter=backend build
env:
NODE_ENV: production