Skip to content

Commit

Permalink
fix verifcation build
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Oct 21, 2024
1 parent 76f59df commit cbe4d7e
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit cbe4d7e

Please sign in to comment.