Skip to content

update preview file #49

update preview file

update preview file #49

Workflow file for this run

name: Deploy PR previews
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
branches:
- main
concurrency: preview-${{ github.ref }}
jobs:
deploy-preview:
runs-on: ubuntu-20.04
steps:
- name: Set up environment variables
run: |
echo "REACT_APP_PREVIEW_BASE=pr-${{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "REACT_APP_DEPLOY_ENV=PREVIEW" >> $GITHUB_ENV
echo "REACT_APP_PUBLIC_URL=https://push-protocol.github.io/" >> $GITHUB_ENV
echo "GITHUB_PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "ESLINT_NO_DEV_ERRORS=true" >> $GITHUB_ENV
echo "TSC_COMPILE_ON_ERROR=true" >> $GITHUB_ENV
echo "DISABLE_ESLINT_PLUGIN=true" >> $GITHUB_ENV
echo "GENERATE_SOURCEMAP=true" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3

Check failure on line 29 in .github/workflows/preview.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/preview.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
with:
node-version: 18.x
cache: yarn
- name: Install and Build
if: github.event.action != 'closed' # You might want to skip the build if the PR has been closed
run: |
yarn install --frozen-lockfile --non-interactive
yarn build:pr:preview
- name: Start Development Server
if: github.event.action == 'opened' || github.event.action == 'reopened' || github.event.action == 'synchronize'
run: |
yarn install --frozen-lockfile --non-interactive
docusaurus start
- name: Deploy preview
uses: rossjrw/pr-preview-action@v1.4.7
with:
source-dir: ./build/
umbrella-dir: pr-preview
- uses: rossjrw/pr-preview-action@v1.4.7
if: github.event.action == 'closed' && !github.event.pull_request.merged
with:
source-dir: ./build/
action: remove