chore: update dependency commitizen to v4.3.1 #277
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: 'CI / CD' | |
on: [push] | |
jobs: | |
compile-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use Node.js 12.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 12.x | |
- name: Restore cached dependencies | |
uses: actions/cache@v2 | |
with: | |
path: | | |
node_modules | |
packages/**/node_modules | |
sandbox/**/node_modules | |
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }} | |
- name: Install Dependencies | |
run: yarn | |
- name: Compile | |
run: yarn compile | |
- name: Lint | |
run: | | |
yarn run check | |
yarn renovate:lint-config | |
- name: Unit Test | |
run: yarn test:coverage | |
- name: Coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish | |
if: ${{github.ref == 'refs/heads/master'}} | |
run: echo Hello World | |
- name: Notify Success | |
if: github.ref == 'refs/heads/master' && success() | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_MESSAGE: ':tada: ${{ github.ref }} build succeeded :tada:' | |
SLACK_USERNAME: GH Actions Bot | |
SLACK_FOOTER: '' | |
SLACK_COLOR: good | |
MSG_MINIMAL: 'actions url,commit' | |
- name: Notify Failure | |
if: github.ref == 'refs/heads/master' && failure() | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_MESSAGE: ':this_is_fine: ${{ github.ref }} build failed :panic:' | |
SLACK_USERNAME: GH Actions Bot | |
SLACK_FOOTER: '' | |
SLACK_COLOR: '#ff0011' | |
MSG_MINIMAL: 'actions url,commit' |