include a reminder to avoid the 32 bit tooling on windows for the native AOT library sample #1594
Workflow file for this run
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: Markdownlint | |
on: | |
push: | |
paths: | |
- "**/*.md" | |
pull_request: | |
paths: | |
- "**/*.md" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 #@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@56899e050abffc08c2b3b61f3ec6a79a9dc3223d #@v1 | |
with: | |
node-version: 12.x | |
- name: Run Markdownlint | |
run: | | |
npm i -g [email protected] | |
markdownlint "**/*.md" |