Skip to content

Commit

Permalink
feat(build): Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jayfreestone committed Apr 1, 2021
1 parent 68edb2f commit cd2da94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
run: npm run test
- name: Build
run: npm build
run: npm run build
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- name: Install Dependencies
run: npm ci
- name: Test
run: npm test
run: npm run test
- name: Build
run: npm build
run: npm run build
- name: Release
run: npx semantic-release
env:
Expand Down

0 comments on commit cd2da94

Please sign in to comment.