CommonMark syntax highlighting _should_ work but I think the remark s… #65
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: Run tests (Node on Windows) | |
on: push | |
concurrency: | |
group: "tests-node" | |
cancel-in-progress: false | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Compile TypeScript | |
run: npm x tsc | |
- name: Copy non-TypeScript files | |
run: npm run copy-files | |
- name: Run tests | |
run: npm run test:windows |