Skip to content

fix: added code

fix: added code #13

Workflow file for this run

# https://github.com/marketplace/actions/deploy-to-github-pages
name: Deploy React App
on:
push:
branches:
- feat/generate-report-0.73
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20' # Adjust to your Node.js version
- name: Deploy react app
run: |
cd ${{ github.workspace }}/WebpageRevamped
yarn install
yarn deploy