mirror of
https://github.com/modrinth/code.git
synced 2026-07-31 13:16:38 +00:00
* Rule 1.x, 3.2 and 3.3x support * reorganize * Kinda Jank dynamic list stuff that should probably be implemented better but its 1:30 am * Checklist Stage Title * Make Stage Title Good * Rule 1.x, 3.2 and 3.3x support * reorganize * Kinda Jank dynamic list stuff that should probably be implemented better but its 1:30 am * Checklist Stage Title * Make Stage Title Good * oops i forgot 3.1 * Insufficient description improvement test * "i forgor" checklist tooltips tooltips (kinda jank but they work) update to latest * only use indexedDb for moderation storage, localStorage forces a bunch of cringe * store moderation stuff separately + compact checklist stuff * give stages actual titles + rename what was previously called titles to hints * Title & Slug, Summary Description, Links, License, Gallery, Versions and Reupload migrated to new system™️ * put stageoptions before nodes * do state and variablse in tooltips * checklist fully migrated to new system, not much new has been added (yet) * forgot to only do modpack permissions for modpacks * Idk why I wasn't just mutating the builder * actual node type hierarchy + action abstraction + improve message/text handling * dropdown + "functional" quick fixes * dropdown + "functional" quick fixes * Allow moderators to suggest correct environment. * remove vestigial function * Prioritization™️ * quickest fixes in the west * start of metadata stage + optimize checklist parsing + a couple of qol features * futureproof™️ environment metadata + just give me project context everywhere * tidy up after today's refactoring * tidy up after tidying up after today's refactoring * move loaders to metadata (from versions) * better required display + vueify + reorganize messages + tag quick fixes + todo * fix log spam + concat md * more bugs * nested state access * update description stage, add showcase clarity * Fix links stage mostly, and tweak metadata stage. * fix links lag + actions on stages * setup links bonus buttons * Change stage order * Update rules stage * Move conditional stages to the top where they belong. * fix some metadata stuff * fix stage selector * don't show non-english buttons on servers without english support. * prepr * stop linter from trying to break my markdown * fix: some issues * fix: lint * not sure why but link's links weren't links * fix quick fixes (again) (idk how they keep breaking) * make messages only actually count as messages if they actually have content * rename horror button to spoilers button * Update links name to match the links settings * re-review stage * unbreak stage selector * passing off version stage fixing. * actually fix the stage selector this time * fix showcase clarity msg * redirect when checklist updates slug fix initial stage not being first if first stage is only shown under certain conditions move to a consistent naming scheme * redirect when checklist updates slug fix initial stage not being first if first stage is only shown under certain conditions move to a consistent naming scheme * ok maybe lets use kebab * move custom description advice stage to first button. * temp priority on corrections applied * make metadata page go to non setting versions page * links stage bonus buttons, src required flag, show link value in msgs, fix msg groupings. * update re-review button * reupload stage navigates to project Description. * fix: link stage using page context too late * chore: run prepr * fix(ci): tell typo check to ignore moderation utils * fix: pr comment if storybook fails * make complex nodes less complex (for the most part) fix re-review stage shown condition new fancy message collection system all buttons that contribute to messages now have relevant tooltips don't store default values in checklist db * make complex nodes less complex (for the most part) fix re-review stage shown condition new fancy message collection system all buttons that contribute to messages now have relevant tooltips don't store default values in checklist db * maybe fixed markdown escaping? * tweak re-review wording. * Update license stage handling and info * add mixed option back for env info * fix: formatEnvironments fix: formatEnvironments * update metadata environment group shown * fix: status alert priority * fix: display suggested slug in slug/misused message * actually navigate when we change project slug * ok like redirect but like don't lose state when slug changes :smart: * make checklist reset button reset only current stage if there's modifications to it instead of full checklist * fix versions stage messages not working * fix donation links not being in a column * I think slug stuff is working? also like actually 100% garunteed markdown escaping works now * prepr * pseudo stages no longer interact with non-pseudo stages at all also query projects better I think? fix repetitive message spam in links stage * apply quick fixes before refreshing page * differentiate reset and return to start * remove random empty lines in some situations * better inaccurate slug message * slug correction input reset button resets to current slug again instead of auto * better keybind navigation * incorrect environment message tweak * use environment name(s) in checklist info * prepr --------- Signed-off-by: Prospector <6166773+Prospector@users.noreply.github.com> Co-authored-by: chyzman <chyzalt@gmail.com> Co-authored-by: Calum H. (IMB11) <contact@cal.engineer> Co-authored-by: Gravy Boat <gravy@thatgravyboat.tech> Co-authored-by: Michael H. <michael@iptables.sh> Co-authored-by: chyz <32403637+chyzman@users.noreply.github.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
155 lines
5.8 KiB
YAML
155 lines
5.8 KiB
YAML
name: Deploy frontend preview
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'apps/frontend/**/*'
|
|
- 'packages/ui/**/*'
|
|
- 'packages/utils/**/*'
|
|
- 'packages/assets/**/*'
|
|
- '**/wrangler.jsonc'
|
|
- '**/pnpm-*.yaml'
|
|
- '.github/workflows/frontend-preview.yml'
|
|
|
|
jobs:
|
|
deploy:
|
|
if: github.repository_owner == 'modrinth' && github.event.pull_request.head.repo.full_name == github.repository
|
|
uses: ./.github/workflows/frontend-deploy.yml
|
|
secrets: inherit
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.environment }}
|
|
cancel-in-progress: true
|
|
strategy:
|
|
matrix:
|
|
environment: [staging-preview, production-preview]
|
|
with:
|
|
environment: ${{ matrix.environment }}
|
|
head_sha: ${{ github.event.pull_request.head.sha }}
|
|
head_ref: ${{ github.event.pull_request.head.ref }}
|
|
|
|
deploy-storybook:
|
|
if: github.repository_owner == 'modrinth' && github.event.pull_request.head.repo.full_name == github.repository
|
|
runs-on: blacksmith-2vcpu-ubuntu-2404
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-storybook
|
|
cancel-in-progress: true
|
|
permissions:
|
|
contents: read
|
|
deployments: write
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
|
|
with:
|
|
node-version-file: .nvmrc
|
|
|
|
- name: Enable Corepack
|
|
run: corepack enable
|
|
|
|
- name: Get pnpm store path
|
|
id: pnpm-store
|
|
run: echo "store-path=$(pnpm store path --silent)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Restore pnpm cache
|
|
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
|
|
with:
|
|
path: ${{ steps.pnpm-store.outputs.store-path }}
|
|
key: pnpm-cache-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
pnpm-cache-
|
|
|
|
- name: Install dependencies
|
|
working-directory: ./packages/ui
|
|
run: pnpm install
|
|
|
|
- name: Build Storybook
|
|
working-directory: ./packages/ui
|
|
run: pnpm run build-storybook
|
|
|
|
- name: Configure short SHA
|
|
id: meta
|
|
env:
|
|
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
run: echo "sha_short=${HEAD_SHA::8}" >> $GITHUB_OUTPUT
|
|
|
|
- name: Deploy Storybook preview
|
|
uses: cloudflare/wrangler-action@9acf94ace14e7dc412b076f2c5c20b8ce93c79cd # v3.15.0
|
|
env:
|
|
NODE_OPTIONS: --max-old-space-size=6144
|
|
with:
|
|
apiToken: ${{ secrets.CF_API_TOKEN }}
|
|
accountId: ${{ secrets.CF_ACCOUNT_ID }}
|
|
workingDirectory: ./packages/ui
|
|
packageManager: pnpm
|
|
wranglerVersion: '4.54.0'
|
|
command: versions upload --preview-alias git-${{ steps.meta.outputs.sha_short }}
|
|
|
|
comment:
|
|
if: |
|
|
!cancelled()
|
|
&& github.repository_owner == 'modrinth'
|
|
&& github.event.pull_request.head.repo.full_name == github.repository
|
|
&& needs.deploy.result == 'success'
|
|
runs-on: ubuntu-latest
|
|
needs: [deploy, deploy-storybook]
|
|
steps:
|
|
- name: Download deployment URLs
|
|
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
|
|
with:
|
|
pattern: deployment-url-*
|
|
merge-multiple: true
|
|
|
|
- name: Read deployment URLs
|
|
id: urls
|
|
env:
|
|
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
|
|
STORYBOOK_RESULT: ${{ needs.deploy-storybook.result }}
|
|
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
|
run: |
|
|
STAGING_PREVIEW_URL=$(cat deployment-url-staging-preview.txt)
|
|
PRODUCTION_PREVIEW_URL=$(cat deployment-url-production-preview.txt)
|
|
|
|
if [ "$STORYBOOK_RESULT" = "success" ]; then
|
|
STORYBOOK_PREVIEW_URL="https://git-${HEAD_SHA::8}-storybook.modrinth.workers.dev"
|
|
else
|
|
STORYBOOK_PREVIEW_URL="⚠️ Deployment $STORYBOOK_RESULT ([logs]($RUN_URL))"
|
|
fi
|
|
|
|
echo "Production preview URL: $PRODUCTION_PREVIEW_URL"
|
|
echo "Staging preview URL: $STAGING_PREVIEW_URL"
|
|
echo "Storybook preview URL: $STORYBOOK_PREVIEW_URL"
|
|
|
|
echo "staging-preview-url=$STAGING_PREVIEW_URL" >> $GITHUB_OUTPUT
|
|
echo "production-preview-url=$PRODUCTION_PREVIEW_URL" >> $GITHUB_OUTPUT
|
|
echo "storybook-preview-url=$STORYBOOK_PREVIEW_URL" >> $GITHUB_OUTPUT
|
|
|
|
- name: Find comment
|
|
if: github.event_name == 'pull_request'
|
|
uses: peter-evans/find-comment@b30e6a3c0ed37e7c023ccd3f1db5c6c0b0c23aad # v4.0.0
|
|
id: fc
|
|
with:
|
|
token: ${{ secrets.CROWDIN_GH_TOKEN }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
body-includes: Frontend previews
|
|
|
|
- name: Comment deploy URL on PR
|
|
if: github.event_name == 'pull_request'
|
|
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
|
|
with:
|
|
token: ${{ secrets.CROWDIN_GH_TOKEN }}
|
|
issue-number: ${{ github.event.pull_request.number }}
|
|
comment-id: ${{ steps.fc.outputs.comment-id }}
|
|
body: |
|
|
## Frontend previews
|
|
|
|
Last deployed commit is [${{ github.event.pull_request.head.sha }}](${{ github.event.pull_request.head.repo.html_url }}/commit/${{ github.event.pull_request.head.sha }})
|
|
|
|
| Environment | URL |
|
|
|-------------|-----|
|
|
| staging | ${{ steps.urls.outputs.staging-preview-url }} |
|
|
| production | ${{ steps.urls.outputs.production-preview-url }} |
|
|
| storybook | ${{ steps.urls.outputs.storybook-preview-url }} |
|
|
edit-mode: replace
|