File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515 - name : Get Yarn cache directory path
1616 id : yarn-cache-dir-path
17- run : echo "::set-output name=dir::$(yarn cache dir )"
17+ run : echo "::set-output name=dir::$(yarn config get cacheFolder )"
1818
1919 - name : Setup Yarn cache
2020 uses : actions/cache@v4
@@ -27,29 +27,33 @@ jobs:
2727 - name : Install dependencies
2828 run : yarn install --frozen-lockfile
2929
30- - name : TypeScript check
31- run : yarn run typecheck
30+ # - name: TypeScript check
31+ # run: yarn run typecheck
3232
33- - name : ESLint check
34- run : yarn run lint
33+ # - name: ESLint check
34+ # run: yarn run lint
3535
36- - name : Build the project
37- run : yarn run build
36+ # - name: Build the project
37+ # run: yarn run build
3838
39- - name : Upload build artifacts
40- uses : actions/upload-artifact@v4
41- with :
42- name : build-artifacts
43- retention-days : 7
44- path : build/
39+ # - name: Upload build artifacts
40+ # uses: actions/upload-artifact@v4
41+ # with:
42+ # name: build-artifacts
43+ # retention-days: 7
44+ # path: |
45+ # packages/*/dist/
4546
4647 summary :
4748 runs-on : ubuntu-latest
48- if : ${{ !cancelled() && secrets.WEBHOOK_DISCORD != '' }}
4949 needs : [ verify_and_build ]
50+ if : ${{ always() }}
51+ env :
52+ HAS_WEBHOOK : ${{ secrets.WEBHOOK_DISCORD != '' }}
5053 steps :
5154
5255 - name : Trigger Webhook
56+ if : ${{ env.HAS_WEBHOOK == 'true' }}
5357 uses : CalmDownVal/webhook-summary@v1
5458 with :
5559 token : ${{ github.token }}
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ __metadata:
7878 tslib : " npm:2.8.1"
7979 typescript : " npm:5.8.2"
8080 peerDependencies :
81- " @calmdownval/workspaces-util " : 1.0.0
81+ " @calmdownval/workspaces-util " : 1.0.0-alpha.2
8282 rollup : 4.38.0
8383 languageName : unknown
8484 linkType : soft
You can’t perform that action at this time.
0 commit comments