feat: react component in message #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy Next.js example to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - feat/rich_message # TODO for test | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| cache: npm | |
| cache-dependency-path: | | |
| packages/react-intl-universal/package-lock.json | |
| packages/react-intl-universal/examples/nextjs-example/package-lock.json | |
| - name: Use npm public registry | |
| run: npm config set registry https://registry.npmjs.org/ | |
| - name: Install package dependencies | |
| working-directory: packages/react-intl-universal | |
| run: npm ci | |
| - name: Build react-intl-universal | |
| working-directory: packages/react-intl-universal | |
| run: npm run build | |
| - name: Install example dependencies | |
| working-directory: packages/react-intl-universal/examples/nextjs-example | |
| run: npm ci | |
| - name: Build static example | |
| working-directory: packages/react-intl-universal/examples/nextjs-example | |
| env: | |
| GITHUB_PAGES: true | |
| run: | | |
| npm run build | |
| touch out/.nojekyll | |
| - name: Upload Pages artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: packages/react-intl-universal/examples/nextjs-example/out | |
| deploy: | |
| runs-on: ubuntu-22.04 | |
| needs: build | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |