We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88f3ceb commit 7edd54dCopy full SHA for 7edd54d
.github/workflows/speakeasy_run_on_pr.yaml
@@ -30,6 +30,18 @@ jobs:
30
- name: Run Speakeasy
31
run: speakeasy run
32
33
+ - name: Setup Node.js
34
+ uses: actions/setup-node@v4
35
+ with:
36
+ node-version: '22'
37
+ cache: 'npm'
38
+
39
+ - name: Install dependencies
40
+ run: npm install
41
42
+ - name: Run tests
43
+ run: npm test
44
45
- name: Commit changes
46
run: |
47
git config --global user.name 'github-actions[bot]'
0 commit comments