Skip to content
This repository has been archived by the owner on Jan 13, 2025. It is now read-only.

Merge pull request #61 from SwapnilChand/patch-1 #38

Merge pull request #61 from SwapnilChand/patch-1

Merge pull request #61 from SwapnilChand/patch-1 #38

Workflow file for this run

name: Build
on:
pull_request:
branches: [ '*' ]
push:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- name: Build
run: pnpm run -r build
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
name: build-output
path: |
packages/*/dist
packages/*/.next
!**/node_modules/**