File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,12 @@ jobs:
1919 - uses : actions/setup-node@v3
2020 with :
2121 node-version : 18
22- cache : yarn
22+ cache : npm
2323
2424 - name : Install dependencies
25- run : yarn install --frozen-lockfile
25+ run : npm ci
2626 - name : Build website
27- run : yarn build
27+ run : npm run build
2828
2929 # Popular action to deploy to GitHub Pages:
3030 # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Original file line number Diff line number Diff line change 1616 - uses : actions/setup-node@v3
1717 with :
1818 node-version : 18
19- cache : yarn
19+ cache : npm
2020
2121 - name : Install dependencies
22- run : yarn install --frozen-lockfile
23- - name : Test build website
24- run : yarn build
22+ run : npm ci
23+ - name : Build website
24+ run : npm run build
You can’t perform that action at this time.
0 commit comments