File tree 7 files changed +30
-16
lines changed
7 files changed +30
-16
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build :
7
+ name : test ubuntu-16.04
8
+ runs-on : ubuntu-16.04
9
+ steps :
10
+ - uses : actions/checkout@v2
11
+ - uses : actions/setup-node@v2
12
+ with :
13
+ node-version : ' 10'
14
+ check-latest : true
15
+ - name : Build
16
+ run : |
17
+ yarn install
18
+ yarn bootstrap
19
+ yarn build
20
+ npx lerna run ensure-no-project-compile-errors
21
+ - name : Test
22
+ run : |
23
+ npx lerna run test:ci
24
+ npx lerna run test:ts-versions
25
+ - name : Code Verification
26
+ run : |
27
+ npx lerna run code-verification
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# @ts-morph/bootstrap
2
2
3
3
[ ![ npm version] ( https://badge.fury.io/js/%40ts-morph%2Fbootstrap.svg )] ( https://badge.fury.io/js/%40ts-morph%2Fbootstrap )
4
- [ ![ Build Status ] ( https://travis-ci.org /dsherret/ts-morph.svg?branch=latest )] ( https://travis-ci.org /dsherret/ts-morph )
4
+ [ ![ CI ] ( https://github.com /dsherret/ts-morph/workflows/CI/badge .svg )] ( https://github.com /dsherret/ts-morph/actions?query=workflow%3ACI )
5
5
6
6
A library for quickly getting set up with the [ TypeScript] ( https://github.com/Microsoft/TypeScript ) Compiler API.
7
7
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ azure-pipelines.yml
20
20
* .csproj.user
21
21
* .sln
22
22
.editorconfig
23
- .travis.yml
24
23
.npmignore
25
24
breaking-changes.md
26
25
CHANGELOG.md
Original file line number Diff line number Diff line change 1
1
# ts-morph
2
2
3
3
[ ![ npm version] ( https://badge.fury.io/js/ts-morph.svg )] ( https://badge.fury.io/js/ts-morph )
4
- [ ![ Build Status ] ( https://travis-ci.org /dsherret/ts-morph.svg?branch=latest )] ( https://travis-ci.org /dsherret/ts-morph )
4
+ [ ![ CI ] ( https://github.com /dsherret/ts-morph/workflows/CI/badge .svg )] ( https://github.com /dsherret/ts-morph/actions?query=workflow%3ACI )
5
5
[ ![ Coverage Status] ( https://coveralls.io/repos/dsherret/ts-morph/badge.svg?branch=latest&service=github )] ( https://coveralls.io/github/dsherret/ts-morph?branch=latest )
6
6
[ ![ stable] ( http://badges.github.io/stability-badges/dist/stable.svg )] ( http://github.com/badges/stability-badges )
7
7
Original file line number Diff line number Diff line change 1
1
# ts-morph
2
2
3
- [ ![ Build Status ] ( https://travis-ci.org /dsherret/ts-morph.svg?branch=latest )] ( https://travis-ci.org /dsherret/ts-morph )
3
+ [ ![ CI ] ( https://github.com /dsherret/ts-morph/workflows/CI/badge .svg )] ( https://github.com /dsherret/ts-morph/actions?query=workflow%3ACI )
4
4
5
5
Monorepo for [ ts-morph] ( packages/ts-morph ) and related projects.
6
6
You can’t perform that action at this time.
0 commit comments