We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1192438 commit 2cdb45eCopy full SHA for 2cdb45e
.github/workflows/tests.yml
@@ -0,0 +1,31 @@
1
+name: Tests
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ api-tests:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Install pnpm
16
+ uses: pnpm/action-setup@v4
17
+ with:
18
+ version: 10
19
+ run_install: false
20
21
+ - name: Install Node.js
22
+ uses: actions/setup-node@v4
23
24
+ node-version: 22
25
+ cache: pnpm
26
27
+ - name: Install dependencies
28
+ run: pnpm install
29
30
+ - name: Run tests
31
+ run: pnpm run test
tests/unit/home.spec.ts
0 commit comments