Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(actions): add missing script on release step
Browse files Browse the repository at this point in the history
  • Loading branch information
matteovivona committed Mar 11, 2020
1 parent a10f9d3 commit 2f1ad6e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,9 @@ jobs:
- name: Build
run: |
npm run build
- name: Test
- name: Run tests
run: |
npm run test:ci
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./lcov.info
npm run test
yarn:
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -72,6 +67,12 @@ jobs:
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
- name: Install with npm
run: |
npm install -q
- name: Build
run: |
npm run build
with:
node-version: 12
- name: Release
Expand Down

0 comments on commit 2f1ad6e

Please sign in to comment.