mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-20 21:43:06 +00:00
19 lines
303 B
YAML
19 lines
303 B
YAML
name: Build
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup node 12
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 12.x
|
|
- run: yarn install
|
|
- run: yarn test
|