changing some lines in front-end.yml #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
working-directory: ./client | ||
uses: actions/checkout@v3 | ||
Check failure on line 11 in .github/workflows/front-end.yml GitHub Actions / CIInvalid workflow file
|
||
- name: Install dependencies and build app | ||
run: | | ||
npm install | ||
npm run build |