1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 12:07:34 +00:00

dropped macos, windows, and node 10

This commit is contained in:
Bharat Middha
2020-01-28 10:47:15 -06:00
parent 7c3fed293a
commit c1c30ff9d4

View File

@@ -4,19 +4,14 @@ on: [push, pull_request]
jobs:
build-node:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: 12.x
- name: Get npm cache directory
id: npm-cache
run: |