We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02349c2 commit 76d23feCopy full SHA for 76d23fe
1 file changed
.github/workflows/web-client-deploy-development.yml
@@ -18,6 +18,11 @@ jobs:
18
# cache: 'yarn'
19
20
# fix from here
21
+ - name: Set Yarn version
22
+ run: |
23
+ corepack enable
24
+ yarn set version 3.8.1
25
+
26
- name: Cache Yarn
27
uses: actions/cache@v4
28
with:
@@ -29,10 +34,9 @@ jobs:
29
34
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
30
35
restore-keys: |
31
36
${{ runner.os }}-yarn-
32
-
33
- - name: build
37
38
+ - name: Install and Build
39
run: |
- yarn set version 3.8.1
40
yarn install --immutable --immutable-cache
41
yarn web codegen
42
yarn web build
0 commit comments