From d836a37dbca54c231b44fca1c8c95eae05a4fe05 Mon Sep 17 00:00:00 2001 From: Nick Boldt Date: Thu, 21 Sep 2023 15:16:15 -0300 Subject: [PATCH] yarn doesn't build, so add the prepack and pack steps Change-Id: I8a9ab7b47abc1eebf8f2651d91d2c4480457b618 Signed-off-by: Nick Boldt --- .github/workflows/pr-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 6a4e78e43..bda3d15e2 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -26,7 +26,7 @@ jobs: with: node-version: 18.16.1 - name: Build chectl - run: yarn + run: yarn && yarn prepack && yarn pack-binaries --targets=linux-x64 - name: Run eslint run: yarn lint - name: Run unit tests @@ -44,7 +44,7 @@ jobs: with: node-version: 18.16.1 - name: Build chectl - run: yarn + run: yarn && yarn prepack && yarn pack-binaries --targets=linux-x64 - name: Build README.md run: yarn oclif readme - name: Check README.md state