Skip to content

Commit cd2da94

Browse files
committed
feat(build): Fix build
1 parent 68edb2f commit cd2da94

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- name: Install Dependencies
1414
run: npm ci
1515
- name: Test
16-
run: npm test
16+
run: npm run test
1717
- name: Build
18-
run: npm build
18+
run: npm run build

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- name: Install Dependencies
1616
run: npm ci
1717
- name: Test
18-
run: npm test
18+
run: npm run test
1919
- name: Build
20-
run: npm build
20+
run: npm run build
2121
- name: Release
2222
run: npx semantic-release
2323
env:

0 commit comments

Comments
 (0)