Skip to content

Commit 94693ab

Browse files
author
Patrick Thomson
authored
Merge pull request #104 from tree-sitter/actions
Switch to GH Actions CI.
2 parents 20f064b + b70dc93 commit 94693ab

File tree

3 files changed

+28
-33
lines changed

3 files changed

+28
-33
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build/test
2+
on:
3+
push:
4+
branches:
5+
- "**"
6+
jobs:
7+
test:
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: true
11+
matrix:
12+
os: [macos-latest, ubuntu-latest]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v2
16+
with:
17+
node-version: 14
18+
- run: npm install
19+
- run: npm test
20+
test_windows:
21+
runs-on: windows-latest
22+
steps:
23+
- uses: actions/checkout@v2
24+
- uses: actions/setup-node@v2
25+
with:
26+
node-version: 14
27+
- run: npm install
28+
- run: npm run-script test-windows

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

appveyor.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)