blob: 332115d4a8e2f0bdde84ce7165aca128763128c4 [file] [log] [blame] [raw]
name: Compiler Explorer on Windows
on: [push]
jobs:
build-and-test:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: npm
- name: Install prerequisites
run: make prereqs
- name: Build and test
run: |
npm run lint-check
npm run ci-test
npm run ts-check