Skip to content

Commit 68de509

Browse files
committed
clean up workflow
1 parent bd6fcb9 commit 68de509

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,6 @@ jobs:
7171
fetch-depth: 0
7272
- name: Fetch tags
7373
run: git fetch --tags --force
74-
- name: Debug git state
75-
run: |
76-
echo "Current commit:"
77-
git rev-parse HEAD
78-
echo "All tags:"
79-
git tag -l
80-
echo "Describe output:"
81-
git describe --tags --match=v* || echo "Describe failed"
82-
echo "Git log:"
83-
git log --oneline -10
8474
- name: Install Java 17
8575
uses: actions/setup-java@v4
8676
with:
@@ -96,17 +86,19 @@ jobs:
9686
node-version: 22
9787
- name: Install mrcal deps
9888
run: sudo apt-get update && sudo apt-get install -y libcholmod3 liblapack3 libsuitesparseconfig5
99-
- name: Install and run Playwright tests
89+
- name: Setup tests
90+
working-directory: photon-client
10091
run: |
101-
cd photon-client
10292
pnpm install
10393
pnpm exec playwright install --with-deps
104-
pnpm exec playwright test
94+
- name: Run Playwright tests
95+
working-directory: photon-client
96+
run: pnpm exec playwright test
10597
- uses: actions/upload-artifact@v4
10698
if: ${{ !cancelled() }}
10799
with:
108100
name: playwright-report
109-
path: playwright-report/
101+
path: photon-client/playwright-report/
110102
retention-days: 30
111103
build-gradle:
112104
name: "Gradle Build"

0 commit comments

Comments
 (0)