Merge pull request #1499 from GNS3/feature/aux-console #961
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: Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- master | |
- master-3.0 | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup node 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14.x | |
- uses: c-hive/gha-yarn-cache@v1 | |
- name: Install JS dependencies | |
run: yarn install | |
- name: Test | |
run: yarn test |