Skip to content

improve the layout

improve the layout #9

Workflow file for this run

name: Deploy React App to GitHub Pages
on:
push:
branches:
- main # Set this to the branch you want to deploy from
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./benchmark-app # Set the working directory globally
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
# with:
# node-version: '16' # Use the Node.js version you prefer
- name: Install dependencies
run: npm install
- name: Build the React app
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./benchmark-app/build