From 31facf10ee73648f20890c836559d4d09d1585a3 Mon Sep 17 00:00:00 2001 From: Gorbachev Egor <7gorbachevm@gmail.com> Date: Tue, 10 Jan 2023 11:30:30 +0300 Subject: [PATCH] upd --- .github/workflows/build_and_test2.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build_and_test2.yml b/.github/workflows/build_and_test2.yml index a9ddcba9e..67ea52f0c 100644 --- a/.github/workflows/build_and_test2.yml +++ b/.github/workflows/build_and_test2.yml @@ -26,3 +26,20 @@ jobs: - name: Build test run: yarn lerna run build:test + + - name: Upload build result + uses: actions/upload-artifact@v3 + with: + name: build + path: . + + test: + name: Test + runs-on: ubuntu-latest + needs: build + steps: + - name: Test + uses: actions/download-artifact@v3 + with: + name: build + run: yarn test -i