From 958daf0abd40b4a49501c146bce72a7a9bfb5162 Mon Sep 17 00:00:00 2001 From: Nulo Date: Sat, 13 Jan 2024 22:09:24 -0300 Subject: [PATCH] ci: pnpm --- .github/workflows/container.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index b5b94dc..67f125a 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -14,16 +14,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: oven-sh/setup-bun@v1 + - uses: pnpm/action-setup@v2 + with: + version: 8 + - name: Use Node.js 20 + uses: actions/setup-node@v3 + with: + node-version: 20 + cache: 'pnpm' + - name: Install dependencies + run: pnpm install - - run: bun install + - run: pnpm check working-directory: ./sitio - - run: bun check - working-directory: ./sitio - - run: bun install - working-directory: ./scraper - - run: bun check - working-directory: ./scraper build-and-push-sitio: needs: check