Skip to content

Commit bf4936c

Browse files
committed
fix: github actions wasn't generating dist. fixes #113
1 parent 51d9893 commit bf4936c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,8 @@ jobs:
2727
uses: actions/setup-node@v2-beta
2828
with:
2929
node-version: ${{ matrix.node }}
30-
- name: Install Deps
31-
run: npm install
32-
- name: Validate package
33-
run: npm run validate
30+
- name: Install deps & validate
31+
run: npm run setup
3432

3533
release:
3634
runs-on: ubuntu-latest
@@ -47,8 +45,10 @@ jobs:
4745
uses: actions/setup-node@v2-beta
4846
with:
4947
node-version: 12.x
50-
- name: Install Deps
48+
- name: Install deps
5149
run: npm install
50+
- name: Build proj
51+
run: npm run build
5252
- name: Update tests, coverage, and release
5353
run: npm run test:update && npx codecov && npx semantic-release
5454
env:

0 commit comments

Comments
 (0)