Skip to content

Fixed typo

Fixed typo #184

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: ["master", "develop"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.11.1]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependancies
working-directory : ./lvlgg_frontend
run: |
npm install
npm install react-scripts
npm install react-router-dom
npm install @mui/material @emotion/react @emotion/styled
npm install @mui/icons-material
npm install axios
- name: Run the tests
working-directory : ./lvlgg_frontend
run: npm run test
- name: Build
working-directory : ./lvlgg_frontend
run: npm run build --if-present