Update c.amazon.properties #24
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: Compiler Explorer on Windows | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: windows-2019 | |
steps: | |
- name: Ask Git to use LF line endings | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js 20.12.1 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.12.1 | |
cache: npm | |
- name: Install prerequisites | |
run: make prereqs | |
- name: Lint | |
run: npm run lint-check | |
shell: cmd | |
- name: Typescript check | |
run: npm run ts-check | |
shell: cmd | |
- name: Test | |
run: npm run ci-test | |
shell: cmd |