chore: store contact emails and phones on the same format as user's and visitor's #1760
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
# .github/workflows/ci-preview.yml | |
name: Deploy PR previews | |
concurrency: preview-${{ github.ref }} | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
jobs: | |
deploy-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: rharkor/[email protected] | |
if: github.event.action != 'closed' | |
- name: Setup NodeJS | |
uses: ./.github/actions/setup-node | |
if: github.event.action != 'closed' | |
with: | |
node-version: 14.21.3 | |
deno-version: 1.37.1 | |
cache-modules: true | |
install: true | |
- name: Build | |
if: github.event.action != 'closed' | |
run: | | |
yarn turbo run build-preview | |
yarn turbo run .:build-preview-move | |
npx indexifier .preview --html --extensions .html > .preview/index.html | |
- uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: .preview | |
preview-branch: gh-pages | |
umbrella-dir: pr-preview | |
action: auto |