File tree 3 files changed +26
-5
lines changed
3 files changed +26
-5
lines changed Original file line number Diff line number Diff line change
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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 )
2
2
3
3
SQL support for server-side Orbit applications.
4
4
You can’t perform that action at this time.
0 commit comments