Skip to content

Commit 6b5eea3

Browse files
authored
Merge pull request #147 from cupcakearmy/actix-2-axum
Actix 2 axum
2 parents b60a079 + d70bee1 commit 6b5eea3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1191
-1633
lines changed
File renamed without changes.

.github/workflows/test.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
# Node
16-
- uses: pnpm/action-setup@v3
16+
- uses: pnpm/action-setup@v4
1717
- uses: actions/setup-node@v4
1818
with:
1919
cache: 'pnpm'
@@ -27,13 +27,16 @@ jobs:
2727

2828
- name: Prepare
2929
run: |
30-
pnpm install --frozen-lockfile
30+
pnpm install
3131
pnpm exec playwright install --with-deps
3232
pnpm run test:prepare
3333
3434
- name: Run your tests
3535
run: pnpm test
36-
- uses: actions/upload-artifact@v3
36+
37+
- uses: actions/upload-artifact@v4
38+
if: ${{ !cancelled() }}
3739
with:
38-
name: test-results
39-
path: test-results
40+
name: playwright-report
41+
path: test-results/
42+
retention-days: 7

0 commit comments

Comments
 (0)