Skip to content

Commit 92a9eb7

Browse files
committed
Change job name to test
1 parent 54cd16b commit 92a9eb7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/check.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Validate code snippets
2727
run: pnpm validate:snippets
2828

29-
playwright:
29+
test:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- uses: actions/checkout@v4
@@ -40,13 +40,16 @@ jobs:
4040
- name: Install Dependencies
4141
run: pnpm i
4242

43+
- name: Run unit tests
44+
run: pnpm test:unit
45+
4346
# per the docs: "caching browser binaries is not recommended,
4447
# since the amount of time it takes to restore the cache is
4548
# comparable to the time it takes to download the binaries"
4649
- name: Install Playwright Browsers
4750
run: ./node_modules/.bin/playwright install --with-deps
4851

49-
- name: Run Playwright tests
52+
- name: Run end-to-end tests
5053
run: ./node_modules/.bin/playwright test
5154

5255
- uses: actions/upload-artifact@v4
@@ -55,6 +58,3 @@ jobs:
5558
name: playwright-report
5659
path: playwright-report/
5760
retention-days: 30
58-
59-
- name: Run unit tests
60-
run: pnpm test:unit

0 commit comments

Comments
 (0)