Skip to content

Commit 5f1d8e3

Browse files
committed
Enable actions CI
1 parent 409b843 commit 5f1d8e3

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

.github/workflows/ci.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
run:
5+
name: Run
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
matrix:
9+
os: [ubuntu-latest]
10+
steps:
11+
- uses: actions/checkout@master
12+
13+
- name: Set Node.js 12.x
14+
uses: actions/setup-node@v1
15+
with:
16+
version: 12.x
17+
18+
- name: Install
19+
run: yarn install
20+
21+
- name: Lint
22+
run: yarn lint
23+
24+
- name: Test
25+
run: yarn test

.travis.yml

-4
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# orbit-sql [![Build Status](https://travis-ci.com/tchak/orbit-sql.svg?branch=master)](https://travis-ci.com/tchak/orbit-sql)
1+
# orbit-sql [![Build Status](https://github.com/tchak/orbit-sql/workflows/CI/badge.svg)](https://github.com/tchak/orbit-sql/actions)
22

33
SQL support for server-side Orbit applications.
44

0 commit comments

Comments
 (0)