We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 991d5d5 commit 28d331cCopy full SHA for 28d331c
.github/workflows/build.yml
@@ -23,11 +23,12 @@ jobs:
23
with:
24
node-version: 24
25
26
- - name: Install Gauge
27
- run: npm install -g @getgauge/cli
+ - uses: getgauge/setup-gauge@master
+ with:
28
+ gauge-version: master
29
30
- name: unit-tests
31
run: |
32
npm install
- gauge${{ startsWith(matrix.os, 'windows') && '.cmd' || ''}} install
33
- gauge${{ startsWith(matrix.os, 'windows') && '.cmd' || ''}} run --tags='!knownIssue & (actions_on_project_load | actions_on_file_edit)' --env=js-wd
+ gauge install
34
+ gauge run --tags='!knownIssue & (actions_on_project_load | actions_on_file_edit)' --env=js-wd
0 commit comments