Skip to content

Commit

Permalink
Move to GitHub Actions (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richienb committed Jan 1, 2021
1 parent 168c46a commit 30753e5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,23 @@
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
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion readme.md
@@ -1,4 +1,4 @@
# import-from [![Build Status](https://travis-ci.org/sindresorhus/import-from.svg?branch=master)](https://travis-ci.org/sindresorhus/import-from)
# import-from

> Import a module like with [`require()`](https://nodejs.org/api/modules.html#modules_require_id) but from a given path
Expand Down

0 comments on commit 30753e5

Please sign in to comment.