@hectorjs/stub-cli #1589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '@hectorjs/stub-cli' | |
on: | |
push: | |
branches: | |
- master | |
- development | |
- feature/#26 | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
build: | |
name: Stub-cli | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [ 10.x , 12.x ] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Set up | |
run: | | |
npm ci | |
npm link | |
env: | |
CI: true | |
- name: Unit test & coverage | |
run: | | |
npm run coverage | |
env: | |
CI: true | |
- name: End to end | |
run: | | |
npm run e2e | |
env: | |
CI: true | |
- name: Code quality | |
run: | | |
npm run eslint | |
env: | |
CI: true | |
- name: Audit | |
run: | | |
npm audit | |
env: | |
CI: true | |
- name: Publish resport coverage | |
run: | | |
npm -g i [email protected] | |
npm run report-coverage -- -t ${{ secrets.CODECOV_TOKEN }} | |
env: | |
CI: true | |