From cbe4d7e073c0af39f22518fb3b05591658df840e Mon Sep 17 00:00:00 2001 From: Kai Salmen Date: Mon, 21 Oct 2024 17:54:26 +0200 Subject: [PATCH] fix verifcation build --- .github/workflows/actions.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index bb847bf6..5e087574 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -15,6 +15,8 @@ jobs: name: monaco-languageclient runs-on: ubuntu-latest timeout-minutes: 10 + if: github.ref_name != 'verify' + steps: - name: Checkout uses: actions/checkout@v4 @@ -59,9 +61,21 @@ jobs: verify: runs-on: ubuntu-latest timeout-minutes: 10 + if: github.ref_name == 'verify' + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Volta + uses: volta-cli/action@v4 + + - name: Use pnpm + uses: pnpm/action-setup@v3 + with: + version: 9 + - name: Execute verification - if: github.ref_name == 'verify' shell: bash run: | bash ./verify/buildAll.sh