Skip to content

Commit

Permalink
Move to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 24, 2021
1 parent d8fa601 commit 0a6027e
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
@@ -0,0 +1,22 @@
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
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 @@
# update-notifier [![Build Status](https://travis-ci.org/yeoman/update-notifier.svg?branch=main)](https://travis-ci.org/yeoman/update-notifier)
# update-notifier

> Update notifications for your CLI app
Expand Down

0 comments on commit 0a6027e

Please sign in to comment.