Refactoring

This commit is contained in:
2025-01-18 09:26:00 -06:00
parent be1dc6eb4b
commit 7b2177c14a
9 changed files with 15311 additions and 26548 deletions

View File

@@ -20,20 +20,23 @@ jobs:
sparse-checkout: |
api
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: ${{ vars.PNPM_VERSION }}
- name: 'Setup Node'
uses: actions/setup-node@v4
with:
node-version: ${{ vars.NODE_VERSION }}
- name: Install
working-directory: api
- name: Install dependencies
run: |
npm install
pnpm install --prod --frozen-lockfile
- name: Build
working-directory: api
run: |
npm run build
pnpm --filter api build
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3