Skip to content

Commit

Permalink
Move to GitHub Actions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb committed Jan 1, 2021
1 parent 326500f commit 19446c0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 7 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
- 10
- 8
- 6
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
6 changes: 0 additions & 6 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# parse-ms [![Build Status](https://travis-ci.org/sindresorhus/parse-ms.svg?branch=master)](https://travis-ci.org/sindresorhus/parse-ms)
# parse-ms

> Parse milliseconds into an object
Expand Down

0 comments on commit 19446c0

Please sign in to comment.