Update code-of-conduct.md #46
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: textlint | |
on: | |
push: | |
branches: | |
- master | |
- draft/** | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# setup Node.js | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
# Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 | |
node-version: '12.x' | |
# Run scripts | |
- name: Install dependencies | |
run: yarn install | |
- name: linting markdown files | |
run: yarn run lint |