From bf379edb16affb361322de5268197f5e5168ef53 Mon Sep 17 00:00:00 2001 From: mrrpnya Date: Thu, 6 Mar 2025 02:16:25 -0800 Subject: [PATCH] Labeled phases, Downgraded artifact actions (v4 -> v3) --- .forgejo/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 93ca748..60a472b 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -14,6 +14,7 @@ env: jobs: install: + name: Prepare environment runs-on: ubuntu-latest steps: - name: Checkout repository @@ -52,12 +53,13 @@ jobs: run: npm run build - name: Save build artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: build path: dist unit-tests: + name: Run unit tests runs-on: ubuntu-latest needs: install steps: @@ -71,7 +73,7 @@ jobs: cache: 'npm' - name: Download build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: build path: dist @@ -80,6 +82,7 @@ jobs: run: npm run test:unit cypress-tests: + name: Run E2E tests runs-on: ubuntu-latest needs: install strategy: @@ -97,7 +100,7 @@ jobs: cache: 'npm' - name: Download build artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: build path: dist