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 a559f4c commit 2d8a89cCopy full SHA for 2d8a89c
.github/workflows/ci.yml
@@ -527,11 +527,17 @@ jobs:
527
echo "clean=false" >> $GITHUB_OUTPUT
528
fi
529
530
+ - name: Use Node.js
531
+ uses: actions/setup-node@v6
532
+ with:
533
+ cache: yarn
534
+ node-version-file: .node-version
535
+
536
- name: Build website
537
if: steps.diffcheck.outputs.clean == 'false'
538
run: |
- npm ci
- npm run build
539
+ yarn
540
+ yarn build
541
542
- name: Commit and push
543
if: ${{ steps.diffcheck.outputs.clean == 'false' && startsWith(github.ref, 'refs/tags/v') }}
0 commit comments