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 22a34c9 commit 55bc119Copy full SHA for 55bc119
.github/workflows/unit-test.yml
@@ -1,4 +1,4 @@
1
-name: 'Tests: Unit'
+name: 'Tests: E2E'
2
on:
3
- push
4
- pull_request
@@ -12,12 +12,10 @@ jobs:
12
version: 6.0.2
13
- uses: actions/checkout@v3
14
- uses: actions/setup-node@v3
15
- - name: Install pnpm
16
- run: pnpm i
17
- - name: Build
18
- run: pnpm run build
19
- - name: Test
20
- run: pnpm run test:ci
+ - name: install dependencies
+ run: npm i && npm run build
+ - name: npm run test:ci
+ run: npm run test:ci
21
env:
22
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }}
23
- PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
+ PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
0 commit comments