We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c2180c commit b62d38bCopy full SHA for b62d38b
1 file changed
.github/workflows/build.yml
@@ -21,21 +21,14 @@ jobs:
21
- uses: actions/setup-node@v4
22
with:
23
node-version: ${{ matrix.node }}
24
- cache: yarn
25
26
# Turn off windows-defender for this folder to speed up compile
27
- if: runner.os == 'Windows'
28
name: windows-defender
29
run: powershell -Command Add-MpPreference -ExclusionPath "."
30
31
- name: install
32
- run: yarn install --network-timeout 1000000
+ run: npm install --network-timeout 1000000
33
34
- # - name: build
35
- # run: yarn xy build
36
-
37
- # - name: statics
38
- # run: yarn xy statics
39
40
- - name: build-storybook
41
- run: yarn build-storybook
+ - name: build
+ run: npm run build
0 commit comments