Skip to content

Commit b1c60d1

Browse files
committed
test: build packages before testing and linting
1 parent 56e1bde commit b1c60d1

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ jobs:
3434
with:
3535
run_install: true
3636

37+
- name: Build Packages
38+
run: node --run build
39+
3740
- name: Lint
3841
run: node --run lint
3942

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run_install: true
3333

3434
- name: Build Packages
35-
run: pnpm build
35+
run: node --run build
3636

3737
- name: Publish
3838
run: pnpm stage publish --no-git-checks

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,8 @@ jobs:
3737
with:
3838
run_install: true
3939

40+
- name: Build Packages
41+
run: node --run build
42+
4043
- name: Run Test
41-
run: pnpm run test
44+
run: node --run test

0 commit comments

Comments
 (0)