diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 4fa3bce..08f52bb 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -12,9 +12,9 @@ jobs: - name: Starting NodeJs ${{ matrix.node-version}} uses: actions/setup-node@v3 with: - path: frontend/casino node-version: ${{ matrix.node-version }} - - name: install modules - run: yarn - - name: build project - run: yarn build \ No newline at end of file + - name: build + run: | + yarn + yarn build + working-directory: frontend/casino