chore(deps): bump protobufjs from 6.11.3 to 6.11.4 #618
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: Lint and test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: install-dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: install docs gem | |
run: | | |
sudo gem install chef-utils -v 16.6.14 | |
sudo gem install mdl | |
- name: eslint | |
run: yarn lint | |
- name: typecheck | |
run: yarn typecheck | |
- name: run tests and publish coverage | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: yarn test --coverageDirectory=. --coverage | |
- name: lint docs | |
run: | | |
mdl README.md | |
mdl docs/ |