From 73babdae42e5cdea28f8b1193dac8aa6091fe72a Mon Sep 17 00:00:00 2001 From: Aleksey_Levin Date: Sun, 7 Jan 2024 16:17:24 +0800 Subject: [PATCH] change actions --- .github/workflows/github-actions-demo.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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