Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# XXX: Fetch history for all branches; we really only need the history
# for the base (main) branch in the `sim-slack` script, so this is
Expand Down Expand Up @@ -61,6 +61,11 @@ jobs:
run: |
pnpm install

# XXX: Workaround for Puppeteer issues
- name: Install Chromium for Puppeteer
run: |
node ./packages/docs-builder/node_modules/puppeteer/install.js

- name: Build
id: build
run: |
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
monorepo-tags: true

- name: Check out repo
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
Expand Down Expand Up @@ -69,6 +69,11 @@ jobs:
run: |
pnpm install

# XXX: Workaround for Puppeteer issues
- name: Install Chromium for Puppeteer
run: |
node ./packages/docs-builder/node_modules/puppeteer/install.js

- name: Build
id: build
run: |
Expand Down