Skip to content

📝 Add Readme & Refactoring #3

📝 Add Readme & Refactoring

📝 Add Readme & Refactoring #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
path: app
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '21'
working-directory: app
- name: Install dependencies
run: npm install
working-directory: app
- name: Build the project
run: npm run build
working-directory: app
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./app/build