diff --git a/.github/workflows/front-end.yml b/.github/workflows/front-end.yml index e6bbd08349..f35e472264 100644 --- a/.github/workflows/front-end.yml +++ b/.github/workflows/front-end.yml @@ -10,8 +10,7 @@ jobs: working-directory: ./client uses: actions/checkout@v3 - - name: Install dependencies - run: npm install - - - name: Build app - run: npm run build \ No newline at end of file + - name: Install dependencies and build app + run: | + npm install + npm run build