All checks were successful
Frontend Build and Deploy / build (push) Successful in 14s
20 lines
293 B
YAML
20 lines
293 B
YAML
name: Frontend Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build Frontend Image
|
|
run: |
|
|
npm install
|
|
npm run build
|