diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 848650c8..eec8a7e9 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -1,4 +1,4 @@ -name: NodeJS Testing +name: NodeJS Build on: push: @@ -25,4 +25,14 @@ jobs: - name: Build run: | npm install - npm run build \ No newline at end of file + npm run build + + - name: Zip dist folder + run: | + zip -r dist.zip dist + + - name: Upload artifact + uses: actions/upload-artifact@v3 + with: + name: dist-zip + path: dist.zip \ No newline at end of file