Skip to content

Commit

Permalink
Merge c9cbb3c into 732d2f1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffijoe committed Jan 31, 2023
2 parents 732d2f1 + c9cbb3c commit ee39925
Show file tree
Hide file tree
Showing 7 changed files with 1,765 additions and 2,207 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,47 @@
# Name of the pipeline
name: CI

# When pushing to any branch
on: [push, pull_request]

jobs:
ci:
name: Lint & Test (Node ${{ matrix.version }})
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
version:
- 14
- 16
- 18
- current
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.version }}
cache: 'npm'

- name: Install Packages
run: npm ci

- name: Lint
run: npm run lint

- name: Test
run: npm run cover

- name: Coveralls
uses: coverallsapp/github-action@1.1.3
if: ${{ matrix.version == 'current' }}
with:
github-token: ${{ secrets.github_token }}

# Cancel running workflows for the same branch when a new one is started.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@ Install missing TypeScript typings for dependencies in your `package.json`.
[![npm](https://img.shields.io/npm/v/typesync.svg?maxAge=1000)](https://www.npmjs.com/package/typesync)
[![dependency Status](https://img.shields.io/david/jeffijoe/typesync.svg?maxAge=1000)](https://david-dm.org/jeffijoe/typesync)
[![devDependency Status](https://img.shields.io/david/dev/jeffijoe/typesync.svg?maxAge=1000)](https://david-dm.org/jeffijoe/typesync)
[![Build Status](https://img.shields.io/travis/jeffijoe/typesync.svg?maxAge=1000)](https://travis-ci.org/jeffijoe/typesync)
[![Build Status](https://img.shields.io/travis/jeffijoe/typesync.svg?maxAge=1000)](https://travis-ci.com/jeffijoe/typesync)
[![Coveralls](https://img.shields.io/coveralls/jeffijoe/typesync.svg?maxAge=1000)](https://coveralls.io/github/jeffijoe/typesync)
[![npm](https://img.shields.io/npm/dt/typesync.svg?maxAge=1000)](https://www.npmjs.com/package/typesync)
[![npm](https://img.shields.io/npm/l/typesync.svg?maxAge=1000)](https://github.com/jeffijoe/typesync/blob/master/LICENSE.md)
Expand Down

0 comments on commit ee39925

Please sign in to comment.