Merge pull request #135 from miguelpalazzo/nubank-edits #1
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run markdown lint | |
uses: nosborn/[email protected] | |
with: | |
files: README.md | |
config_file: ".markdownlint.json" | |
- name: Node setup | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.x' | |
- name: Run Checklist | |
shell: 'script -q -e -c "bash {0}"' | |
run: npm ci && npx eslint test/. && npm run test | |