We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95c7442 commit e17fdf0Copy full SHA for e17fdf0
1 file changed
.github/workflows/test-example-apps.yml
@@ -40,15 +40,15 @@ jobs:
40
run: npm install -g http-server
41
42
- name: Run tests
43
- if: inputs.update-screenshots == 'false'
+ if: inputs.update-screenshots == false
44
run: cd examples/tests && npm test
45
46
- name: Run tests with updated screenshots
47
- if: inputs.update-screenshots == 'true'
+ if: inputs.update-screenshots == true
48
run: cd examples/tests && npm test -- --update-snapshots
49
50
- name: Upload screenshots
51
52
env:
53
GH_TOKEN: ${{ secrets.SUPERDOC_PAT }}
54
run: |
0 commit comments