Skip to content

removed console.log

removed console.log #2

Workflow file for this run

name: Client Pipeline
on:
push:
branches:
- main
paths:
- 'client/**' # Trigger only when code is pushed inside the 'client' folder
jobs:
build:
runs-on: ubuntu-latest
env:
REACT_APP_BASE_URI: ${{ secrets.REACT_APP_BASE_URI }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: cd client && npm install
- name: Build client
run: cd client && npm run build
- name: Deploy client
run: cd client && npm run deploy
env:
REACT_APP_BASE_URI: ${{ secrets.REACT_APP_BASE_URI }}
with:

Check failure on line 35 in .github/workflows/client.yml

View workflow run for this annotation

GitHub Actions / Client Pipeline

Invalid workflow file

The workflow is not valid. .github/workflows/client.yml (Line: 35, Col: 9): Unexpected value 'with'
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./client/build