We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bfb7c7 commit b96b58eCopy full SHA for b96b58e
1 file changed
.github/workflows/ci.yaml
@@ -15,6 +15,8 @@ permissions:
15
16
env:
17
CLICOLOR: 1
18
+ PNPM_VERSION: 10
19
+ NODE_VERSION: 20
20
21
jobs:
22
typos:
@@ -29,3 +31,22 @@ jobs:
29
31
30
32
RUST_BACKTRACE: 1
33
CARGO_TERM_COLOR: always
34
+
35
+ tests:
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - name: Check out repository
39
+ uses: actions/checkout@v4
40
+ - name: Set up pnpm
41
+ uses: pnpm/action-setup@v4
42
+ with:
43
+ version: ${{ env.PNPM_VERSION }}
44
+ - name: Set up Node
45
+ uses: actions/setup-node@v4
46
47
+ node-version: ${{ env.NODE_VERSION }}
48
+ cache: pnpm
49
+ - name: Install dependencies
50
+ run: pnpm install
51
+ - name: Run unit-tests
52
+ run: pnpm run test
0 commit comments