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 95b37d8 commit 42ec398Copy full SHA for 42ec398
.github/workflows/build.yml
@@ -206,14 +206,18 @@ jobs:
206
contents: read
207
deployments: write
208
steps:
209
+ - uses: actions/checkout@v4
210
- uses: actions/setup-node@v4
211
with:
- node-version: 18
212
+ cache: yarn
213
+ node-version: '18'
214
- uses: actions/cache/restore@v3
215
216
path: ./
217
key: web3-18-${{github.event.pull_request.base.sha}}
- - run: npm run build:docs
218
+ - run: yarn install --ignore-scripts
219
+ - run: yarn build:cjs
220
+ - run: yarn run build:docs
221
- name: Publish to Cloudflare Pages
222
uses: cloudflare/pages-action@v1
223
0 commit comments