Skip to content

fix: streamline build copying step in frontend push workflow #3

fix: streamline build copying step in frontend push workflow

fix: streamline build copying step in frontend push workflow #3

Workflow file for this run

name: Host Frontend Using Firebase Hosting
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Get code
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Copy build to public folder
run: cp -r build public