We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8eb6700 commit 5c35db9Copy full SHA for 5c35db9
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: Run Tests
2
+
3
+on: push
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - name: Checkout repository
11
+ uses: actions/checkout@v4
12
13
+ - name: Setup Node.js LTS
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ node-version: 'lts/*'
17
18
+ - name: Install PNPM
19
+ uses: pnpm/action-setup@v4
20
21
+ - name: Install dependencies
22
+ run: pnpm install
23
24
+ - name: Run tests
25
+ run: pnpm test
0 commit comments