Skip to content

Commit

Permalink
Merge pull request #222 from kethinov/github-actions-ci
Browse files Browse the repository at this point in the history
Migrate to GitHub CI
  • Loading branch information
alallier committed Jan 12, 2020
2 parents 49674b4 + 1d8c3ac commit fee3e47
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 34 deletions.
24 changes: 0 additions & 24 deletions .appveyor.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: push
name: CI
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10.x, 12.x, 13.x]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm run report-coverage
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Next version
------------------

* Migrated CI to GitHub Actions

3.0.3 / 2019-10-20
------------------

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
reload
=======

[![Build Status](https://travis-ci.org/alallier/reload.svg?branch=master)](https://travis-ci.org/alallier/reload)
[![Build status](https://ci.appveyor.com/api/projects/status/4uuui532bpht2ff7/branch/master?svg=true)](https://ci.appveyor.com/project/alallier/reload/branch/master)
[![Build Status](https://github.com/alallier/reload/workflows/CI/badge.svg)](https://github.com/alallier/reload/actions?query=workflow%3ACI)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/)
[![codecov](https://codecov.io/gh/alallier/reload/branch/master/graph/badge.svg)](https://codecov.io/gh/alallier/reload)
[![NPM version](https://img.shields.io/npm/v/reload.svg)](https://www.npmjs.com/package/reload)
Expand Down

0 comments on commit fee3e47

Please sign in to comment.