Skip to content

Commit

Permalink
Move to GitHub Actions (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb committed Jan 1, 2021
1 parent 8c7ac33 commit 694ddb2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 11 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,26 @@
name: CI
on:
- push
- pull_request
jobs:
test:
name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version:
- 14
- 12
- 10
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
@@ -1,4 +1,4 @@
# cp-file [![Build Status](https://travis-ci.org/sindresorhus/cp-file.svg?branch=master)](https://travis-ci.org/sindresorhus/cp-file) [![Coverage Status](https://coveralls.io/repos/github/sindresorhus/cp-file/badge.svg?branch=master)](https://coveralls.io/github/sindresorhus/cp-file?branch=master)
# cp-file

> Copy a file
Expand Down

0 comments on commit 694ddb2

Please sign in to comment.