New photo of Hengcheng #39
Workflow file for this run
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
# This is a basic workflow to do the last time check before release, i.e., merge to main branch | |
# Simple workflow for deploying static content to GitHub Pages | |
name: Build React Webpage | |
on: | |
# Runs on pushes targeting the release branch | |
pull_request: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Single deploy job since we're just deploying | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 16.x | |
# cache: 'yarn' | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: | | |
yarn build |