Skip to content

Changed legacy app to use email as username to be analog with forms a… #7

Changed legacy app to use email as username to be analog with forms a…

Changed legacy app to use email as username to be analog with forms a… #7

Workflow file for this run

name: Frontend
on: [push, pull_request]
jobs:
build:
name: 'Build'
runs-on: ubuntu-latest
steps:
# Checkout repository
- name: Checkout
uses: actions/checkout@v4
# Install Node.js
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20.x
# Restore dependencies
- name: Restore dependencies
run: |
cd ./Frontend/
npm install
# Build library
- name: Build library
run: |
cd ./Frontend/
npm run build