Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,19 @@ jobs:
- name: Lint
run: yarn tslint && yarn format
build:
runs-on: ubuntu-latest
needs: lint
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x]
os: [ windows-latest, macos-latest, ubuntu-latest ]
steps:
- name: checkout
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn_cache_dir_path
run: echo "::set-output name=dir::$(yarn cache dir)"
Expand Down