This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
:chore 🔥 updated gitignore #195
Workflow file for this run
This file contains 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: Generate preview link | |
on: | |
pull_request_target: | |
types: [opened, synchronize] | |
env: | |
HEAD_REF: ${{ github.head_ref }} | |
concurrency: | |
group: cloudflare-pages-build-"$HEAD_REF" | |
cancel-in-progress: true | |
jobs: | |
build_and_deploy_preview_link: | |
runs-on: Ubuntu-latest | |
permissions: | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Verify user | |
uses: 'deriv-com/shared-actions/.github/actions/verify_user_in_organization@v1' | |
with: | |
username: ${{github.event.pull_request.user.login}} | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.event.pull_request.head.sha}} | |
- name: Post preview build comment | |
id: post_preview_build_comment | |
uses: 'deriv-com/shared-actions/.github/actions/post_preview_build_comment@v1' | |
with: | |
issue_number: ${{github.event.number}} | |
head_sha: ${{github.event.pull_request.head.sha}} | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.16 | |
- name: Install dependencies | |
uses: 'deriv-com/shared-actions/.github/actions/npm_install@v1' | |
- name: Build | |
uses: './.github/actions/build' | |
with: | |
NODE_ENV: staging | |
GD_API_KEY: ${{ secrets.GD_API_KEY }} | |
GD_APP_ID: ${{ secrets.GD_APP_ID }} | |
GD_CLIENT_ID: ${{ secrets.GD_CLIENT_ID }} | |
TRACKJS_TOKEN: ${{ secrets.TRACKJS_TOKEN }} | |
DATADOG_CLIENT_LOGS_TOKEN: ${{ secrets.DATADOG_CLIENT_LOGS_TOKEN }} | |
DATADOG_LOGS_SESSION_SAMPLE_RATE: ${{ secrets.DATADOG_LOGS_SESSION_SAMPLE_RATE }} | |
REF_NAME: ${{ github.ref_name }} | |
- name: 'Run Tests' | |
run: npm run test | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Publish to CF pages branch | |
id: publish_to_pages_branch | |
uses: 'deriv-com/shared-actions/.github/actions/publish_to_pages_branch@v1' | |
with: | |
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_TEST_LINKS_API_TOKEN }} | |
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_TEST_LINKS_ACCOUNT_ID }} | |
project_name: 'binary-bot-preview' | |
branch_name: 'pr-${{github.event.number}}' | |
output_dir: www | |
- name: 'Generate preview link comment' | |
uses: 'deriv-com/shared-actions/.github/actions/post_preview_link_comment@v1' | |
if: always() && steps.post_preview_build_comment.outcome == 'success' | |
with: | |
issue_number: ${{github.event.number}} | |
check_run_id: ${{steps.post_preview_build_comment.outputs.check_run_id}} | |
preview_url: ${{steps.publish_to_pages_branch.outputs.cf_pages_url}} | |
status: ${{job.status}} |