From b031902d01123415c636ccf1647c1b4b186b4c16 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Tue, 29 Jul 2025 19:24:26 +0200 Subject: [PATCH] Refactor: streamline workflow steps in nuxthub.yml for improved clarity --- .github/workflows/nuxthub.yml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nuxthub.yml b/.github/workflows/nuxthub.yml index 5b2bb49..9e501c1 100644 --- a/.github/workflows/nuxthub.yml +++ b/.github/workflows/nuxthub.yml @@ -13,8 +13,7 @@ jobs: id-token: write steps: - - name: Checkout - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - name: Install pnpm uses: pnpm/action-setup@v4 @@ -25,14 +24,8 @@ jobs: node-version: 22 cache: 'pnpm' - - name: Install build tools - run: sudo apt-get update && sudo apt-get install -y build-essential - - name: Install dependencies - run: pnpm install --unsafe-perm - - - name: Rebuild better-sqlite3 bindings - run: pnpm rebuild better-sqlite3 + run: pnpm install - name: Build application run: pnpm run build