We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55bc119 commit 7b5da8bCopy full SHA for 7b5da8b
.github/workflows/unit-test.yml
@@ -1,4 +1,4 @@
1
-name: 'Tests: E2E'
+name: 'Tests: Unit'
2
on:
3
- push
4
- pull_request
@@ -12,10 +12,12 @@ jobs:
12
version: 6.0.2
13
- uses: actions/checkout@v3
14
- uses: actions/setup-node@v3
15
- - name: install dependencies
16
- run: npm i && npm run build
17
- - name: npm run test:ci
18
- run: npm run test:ci
+ - name: Install pnpm
+ run: pnpm i
+ - name: Build
+ run: pnpm run build
19
env:
20
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }}
21
- PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
+ PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
22
+ - name: Test
23
+ run: pnpm run test:ci
0 commit comments