Skip to content

Commit 7b5da8b

Browse files
committed
ci: 👷 move env variables for build
1 parent 55bc119 commit 7b5da8b

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/unit-test.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Tests: E2E'
1+
name: 'Tests: Unit'
22
on:
33
- push
44
- pull_request
@@ -12,10 +12,12 @@ jobs:
1212
version: 6.0.2
1313
- uses: actions/checkout@v3
1414
- 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
15+
- name: Install pnpm
16+
run: pnpm i
17+
- name: Build
18+
run: pnpm run build
1919
env:
2020
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }}
21-
PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
21+
PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }}
22+
- name: Test
23+
run: pnpm run test:ci

0 commit comments

Comments
 (0)