Skip to content

fix(Pagination): api alignment #364

fix(Pagination): api alignment

fix(Pagination): api alignment #364

Workflow file for this run

name: Deploy Theme Preview
env:
VERCEL_TEAM: ${{ secrets.VERCEL_TEAM }}
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID_THEME }}
PR_NUMBER: ${{ github.event.number }}
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
paths:
- 'apps/theme/**'
jobs:
Deploy-Preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use node 20 and yarn cache
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Install Vercel CLI
run: yarn add vercel@latest
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- id: deploy
name: Deploy Project Artifacts to Vercel
run: echo "url=$(vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})" >> $GITHUB_OUTPUT
- name: Set Vercel alias
run: vercel alias --token=${{ secrets.VERCEL_TOKEN }} --scope=${{ secrets.VERCEL_TEAM }} set ${{ steps.deploy.outputs.url }} pr-${{ env.PR_NUMBER }}.theme.designsystemet.no
- name: Find Preview comment
uses: peter-evans/find-comment@v2
id: fc
with:
issue-number: ${{ env.PR_NUMBER }}
body-includes: |
**Preview deployments for this pull request:**
- run: echo ${{ steps.fc.outputs.comment-id }}
if: success() && env.PR_NUMBER
- name: Find Storybook deployment
uses: actions-ecosystem/action-regex-match@v2
id: regex-storybook
with:
text: ${{ steps.fc.outputs.comment-body }}
regex: '\[Storybook\]\((https:\/\/[^)]+)\).*'
- name: Find Storefront deployment
uses: actions-ecosystem/action-regex-match@v2
id: regex-storefront
with:
text: ${{ steps.fc.outputs.comment-body }}
regex: '\[Storefront\]\((https:\/\/[^)]+)\).*'
- name: Get current time in CEST
uses: josStorer/get-current-time@v2
id: current-time
with:
format: D. MMM YYYY - HH:mm
timezone: Europe/Oslo
- name: Update comment with deployment
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ env.PR_NUMBER }}
comment-id: ${{ steps.fc.outputs.comment-id }}
edit-mode: replace
body: |
**Preview deployments for this pull request:**
${{ steps.regex-storybook.outputs.match }}
${{ steps.regex-storefront.outputs.match }}
[Theme](https://pr-${{ env.PR_NUMBER }}.theme.designsystemet.no) - `${{ steps.current-time.outputs.formattedTime }}`