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
13 changes: 11 additions & 2 deletions .github/workflows/website-integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
website-check:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
Expand All @@ -23,7 +23,16 @@ jobs:
- name: Set up env
uses: the-guild-org/shared-config/setup@v1

- name: Build Site
- name: Fetch remote docs
run: cd website && pnpm fetch-remote-docs

- name: Fetch API reference
run: cd website && pnpm fetch-api-reference

- name: Fix pages structure
run: cd website && pnpm fix-pages-structure

- name: Build
run: pnpm build

- name: Compare
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ WORKDIR /app
COPY . ./

RUN pnpm install --frozen-lockfile
RUN cd website && pnpm fetch-remote-docs
RUN cd website && pnpm fetch-api-reference
RUN cd website && pnpm fix-pages-structure
RUN pnpm build

FROM nginx:1.16.0-alpine
Expand Down
4 changes: 2 additions & 2 deletions packages/og-image/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
"dependencies": {
"@resvg/resvg-wasm": "^2.6.2",
"react": "^18.3.1",
"satori": "^0.12.1",
"satori": "^0.12.2",
"yoga-wasm-web": "^0.3.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250321.0",
"@cloudflare/workers-types": "^4.20250327.0",
"@types/react": "^18.3.20",
"jest-image-snapshot": "^6.4.0",
"tsx": "^4.19.3",
Expand Down
Loading