forked from nodegui/nodegui
-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (25 loc) · 759 Bytes
/
test.yml
File metadata and controls
25 lines (25 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '13.x'
- name: Install deps
run: npm install
- name: Build nodegui
run: npm run build
- name: Run tests
run: npm run test
- name: Run linters for cpp
run: npm run lint:cpp
- name: Run linters for ts
run: npm run lint:ts