diff options
author | Linnea Gräf <nea@nea.moe> | 2025-01-17 16:26:24 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-01-17 16:26:24 +0100 |
commit | 540fb3657dc98bc9ae8dccb9ae32c0c59dd837a6 (patch) | |
tree | b20d2d150512b69d0c4ab4657b6bcb480f477de0 /.github | |
parent | d391ce632be29c49a612c64eb5f720238a46844d (diff) | |
download | LocalTransactionLedger-540fb3657dc98bc9ae8dccb9ae32c0c59dd837a6.tar.gz LocalTransactionLedger-540fb3657dc98bc9ae8dccb9ae32c0c59dd837a6.tar.bz2 LocalTransactionLedger-540fb3657dc98bc9ae8dccb9ae32c0c59dd837a6.zip |
ci: Fix pnpm missing from CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9eee2c..fd9ec1e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,10 @@ jobs: with: distribution: temurin java-version: 17 - + - name: Setup PNPM + uses: pnpm/action-setup@v4 + with: + package_json_file: 'server/frontend/package.json' - name: Setup Gradle uses: gradle/actions/setup-gradle@v3 |