From 8ffcdab5f92546dc5f4cf3693e0031453f9ab45b Mon Sep 17 00:00:00 2001 From: Martin Svoboda Date: Mon, 1 Jul 2024 18:07:42 +0200 Subject: [PATCH] Upload dist folder --- .github/workflows/test.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c7306e9..152c84a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,11 +31,16 @@ jobs: - name: Test generate docs run: | yarn docs - - name: Upload Artifacts + - name: Upload lib Artifacts uses: actions/upload-artifact@v2 with: - name: lib # A name for the artifact - path: ./lib # The path to the directory or file to upload + name: lib + path: ./lib + - name: Upload dist Artifacts + uses: actions/upload-artifact@v2 + with: + name: dist + path: ./dist test-versions: needs: test runs-on: ubuntu-latest @@ -57,11 +62,16 @@ jobs: run: | yarn install --frozen-lockfile --ignore-engines - - name: Download Artifacts + - name: Download lib Artifacts uses: actions/download-artifact@v2 with: name: lib path: ./lib + - name: Download dist Artifacts + uses: actions/download-artifact@v2 + with: + name: dist + path: ./dist - name: Test run: yarn test