Skip to content

Fw 5019 form fields clarification #385

Fw 5019 form fields clarification

Fw 5019 form fields clarification #385

Workflow file for this run

name: Build Frontend
on:
pull_request:
branches:
- main
jobs:
build:
name: Build Frontend
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
# Checkout the current working code base
- name: Checkout working branch
uses: actions/checkout@v3
# Installs the correct Node version for the project
- name: Setup Node.js for use with actions
uses: actions/setup-node@v1
with:
node-version: '18.16.0'
- name: Build frontend (includes Node package install)
run: |
npm ci --include=dev
npm run build:production