Merge pull request #760 from jwbensley/patch-2 #802
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 | |
# Trigger workflow on push and pull requests. | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Node 19.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '19.x' | |
- name: Install dependencies with a clean slate | |
run: npm ci | |
- name: Run tests | |
run: npm run test | |
- name: Lint markdown | |
run: npm run lint-markdown |