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 3edad3e commit a2df83bCopy full SHA for a2df83b
.github/workflows/pr-checks.yml
@@ -24,18 +24,24 @@ jobs:
24
steps:
25
- uses: actions/checkout@v5
26
27
+ - name: Set up Node.js
28
+ uses: actions/setup-node@v4
29
+ with:
30
+ node-version: '20.x'
31
+ cache: 'npm'
32
+
33
+ - name: Set up Python
34
+ uses: actions/setup-python@v5
35
36
+ python-version: 3.11
37
38
- name: Install dependencies
39
run: |
40
# Use the system Bash shell to ensure we can run commands like `npm install`
41
# that are not available in the default shell on Windows.
42
npm config set script-shell bash
43
npm install
44
- - name: Set up Python
- uses: actions/setup-python@v5
- with:
- python-version: 3.11
-
45
- name: Verify compiled JS up to date
46
run: .github/workflows/script/check-js.sh
47
0 commit comments