We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51d9893 commit bf4936cCopy full SHA for bf4936c
.github/workflows/release.yml
@@ -27,10 +27,8 @@ jobs:
27
uses: actions/setup-node@v2-beta
28
with:
29
node-version: ${{ matrix.node }}
30
- - name: Install Deps
31
- run: npm install
32
- - name: Validate package
33
- run: npm run validate
+ - name: Install deps & validate
+ run: npm run setup
34
35
release:
36
runs-on: ubuntu-latest
@@ -47,8 +45,10 @@ jobs:
47
45
48
46
49
node-version: 12.x
50
+ - name: Install deps
51
run: npm install
+ - name: Build proj
+ run: npm run build
52
- name: Update tests, coverage, and release
53
run: npm run test:update && npx codecov && npx semantic-release
54
env:
0 commit comments