From 69c179330b154da03ba67b5e20b98eecf269b14b Mon Sep 17 00:00:00 2001 From: Hendra Gunawan <48410066+JadlionHD@users.noreply.github.com> Date: Fri, 6 Sep 2024 01:22:33 +0700 Subject: [PATCH] fix: test github actions --- .github/workflows/release.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49c0dcf..f5bb69b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,16 +16,21 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + + - uses: pnpm/action-setup@v4 + name: Install pnpm + with: + version: 9 + run_install: false + + - name: Install Node.js uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: "npm" - - name: Install dependencies - run: npm install + cache: "pnpm" - name: Build Apps - run: npm run build + run: pnpm run build - name: Compress build files run: zip -r build.zip build