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 1e67a9e commit 4cdb245Copy full SHA for 4cdb245
.github/workflows/ci.yaml
@@ -10,14 +10,18 @@ jobs:
10
with:
11
node-version: 20
12
13
- - name: Install server
14
- run: yarn --cwd server install
+ - uses: actions/setup-python@v5
+ with:
15
+ python-version: 3.9
16
17
- name: Install client
18
run: yarn --cwd client install
19
- - name: Lint server source
20
- run: yarn --cwd server lint
21
-
22
- name: Lint client source
23
run: yarn --cwd client lint
+
+ - name: Install server
24
+ run: yarn --cwd server install
25
26
+ - name: Lint server source
27
+ run: yarn --cwd server lint
0 commit comments