Skip to content

Commit f0fc1a0

Browse files
committed
chore: Switch to using GitHub Actions.
1 parent 1cccd02 commit f0fc1a0

File tree

7 files changed

+30
-16
lines changed

7 files changed

+30
-16
lines changed
File renamed without changes.

.github/workflows/ci.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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

.travis.yml

-12
This file was deleted.

packages/bootstrap/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# @ts-morph/bootstrap
22

33
[![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)
55

66
A library for quickly getting set up with the [TypeScript](https://github.com/Microsoft/TypeScript) Compiler API.
77

packages/ts-morph/.npmignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ azure-pipelines.yml
2020
*.csproj.user
2121
*.sln
2222
.editorconfig
23-
.travis.yml
2423
.npmignore
2524
breaking-changes.md
2625
CHANGELOG.md

packages/ts-morph/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ts-morph
22

33
[![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)
55
[![Coverage Status](https://coveralls.io/repos/dsherret/ts-morph/badge.svg?branch=latest&service=github)](https://coveralls.io/github/dsherret/ts-morph?branch=latest)
66
[![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)
77

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ts-morph
22

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)
44

55
Monorepo for [ts-morph](packages/ts-morph) and related projects.
66

0 commit comments

Comments
 (0)