Skip to content

Commit

Permalink
Merge pull request #12 from tree-sitter/actions
Browse files Browse the repository at this point in the history
Switch to GH Actions CI.
  • Loading branch information
patrickt authored Mar 9, 2021
2 parents 8960792 + ae7da17 commit 37c82f8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build/test
on:
push:
branches:
- "**"
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm install
- run: npm test
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 37c82f8

Please sign in to comment.