Skip to content

Commit

Permalink
fix: github actions wasn't generating dist. fixes #113
Browse files Browse the repository at this point in the history
  • Loading branch information
MirrorBytes committed Dec 25, 2020
1 parent 51d9893 commit bf4936c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ jobs:
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: Install Deps
run: npm install
- name: Validate package
run: npm run validate
- name: Install deps & validate
run: npm run setup

release:
runs-on: ubuntu-latest
Expand All @@ -47,8 +45,10 @@ jobs:
uses: actions/setup-node@v2-beta
with:
node-version: 12.x
- name: Install Deps
- name: Install deps
run: npm install
- name: Build proj
run: npm run build
- name: Update tests, coverage, and release
run: npm run test:update && npx codecov && npx semantic-release
env:
Expand Down

0 comments on commit bf4936c

Please sign in to comment.