Skip to content

Update README.md

Update README.md #36

Workflow file for this run

# Workflow to test the React Web App
name: CI - React Web App Build
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/checkout
- name: Checkout source repository
uses: actions/checkout@v3
# https://github.com/actions/setup-node
- name: Setup Node.js installation
uses: actions/setup-node@v3
with:
# update the Node version to meet your needs
node-version: 16
cache: npm
working-directory: frontend/algam

Check failure on line 27 in .github/workflows/app.yml

View workflow run for this annotation

GitHub Actions / CI - React Web App Build

Invalid workflow file

The workflow is not valid. .github/workflows/app.yml (Line: 27, Col: 9): Unexpected value 'working-directory'
- name: Install Dependencies
run: |
cd frontend/algam
npm ci
- name: Build Next App
run: |
cd frontend/algam
npm run build