We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11165f8 commit d34c3baCopy full SHA for d34c3ba
2 files changed
.github/ci.yml
@@ -0,0 +1,22 @@
1
+name: 'test'
2
+on: push
3
+
4
+jobs:
5
+ test:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v4
9
10
+ - name: Install pnpm
11
+ uses: pnpm/action-setup@v4.0.0
12
13
+ - name: Install Node.js
14
+ uses: actions/setup-node@v4
15
+ with:
16
+ node-version-file: '.node-version'
17
+ cache: 'pnpm'
18
19
+ - run: pnpm install
20
21
+ - name: Run unit tests
22
+ run: pnpm test
.node-version
@@ -0,0 +1 @@
+22
0 commit comments