Skip to content

Simplify

Simplify #52

name: Build and Deploy Frontend
on:
push:
branches:
- main
defaults:
run:
working-directory: frontend
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: frontend/node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
env:
REACT_APP_API_URL: ${{ vars.REACT_APP_API_URL }}
REACT_APP_GH_CLIENT_ID: ${{ vars.GH_CLIENT_ID }}
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: frontend/build # The folder the action should deploy.