Skip to content

css styles

css styles #44

name: Build and Deploy Frontend
on:
push:
branches:
- master
env:
REACT_APP_BACKEND_URL: ${{ vars.REACT_APP_BACKEND_URL }}
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install and Build 🔧
run: |
npm install --legacy-peer-deps
npm run build
env:
REACT_APP_BACKEND_URL: ${{ env.REACT_APP_BACKEND_URL }}
CI: false
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: build