Skip to content

Commit

Permalink
chore: Switch to using GitHub Actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Feb 18, 2021
1 parent 1cccd02 commit f0fc1a0
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 16 deletions.
File renamed without changes.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push, pull_request]

jobs:
build:
name: test ubuntu-16.04
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '10'
check-latest: true
- name: Build
run: |
yarn install
yarn bootstrap
yarn build
npx lerna run ensure-no-project-compile-errors
- name: Test
run: |
npx lerna run test:ci
npx lerna run test:ts-versions
- name: Code Verification
run: |
npx lerna run code-verification
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion packages/bootstrap/readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# @ts-morph/bootstrap

[![npm version](https://badge.fury.io/js/%40ts-morph%2Fbootstrap.svg)](https://badge.fury.io/js/%40ts-morph%2Fbootstrap)
[![Build Status](https://travis-ci.org/dsherret/ts-morph.svg?branch=latest)](https://travis-ci.org/dsherret/ts-morph)
[![CI](https://github.com/dsherret/ts-morph/workflows/CI/badge.svg)](https://github.com/dsherret/ts-morph/actions?query=workflow%3ACI)

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

Expand Down
1 change: 0 additions & 1 deletion packages/ts-morph/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ azure-pipelines.yml
*.csproj.user
*.sln
.editorconfig
.travis.yml
.npmignore
breaking-changes.md
CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion packages/ts-morph/readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ts-morph

[![npm version](https://badge.fury.io/js/ts-morph.svg)](https://badge.fury.io/js/ts-morph)
[![Build Status](https://travis-ci.org/dsherret/ts-morph.svg?branch=latest)](https://travis-ci.org/dsherret/ts-morph)
[![CI](https://github.com/dsherret/ts-morph/workflows/CI/badge.svg)](https://github.com/dsherret/ts-morph/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/dsherret/ts-morph/badge.svg?branch=latest&service=github)](https://coveralls.io/github/dsherret/ts-morph?branch=latest)
[![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges)

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ts-morph

[![Build Status](https://travis-ci.org/dsherret/ts-morph.svg?branch=latest)](https://travis-ci.org/dsherret/ts-morph)
[![CI](https://github.com/dsherret/ts-morph/workflows/CI/badge.svg)](https://github.com/dsherret/ts-morph/actions?query=workflow%3ACI)

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

Expand Down

0 comments on commit f0fc1a0

Please sign in to comment.