Skip to content

Commit

Permalink
replace Travis CI with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pirxpilot committed Jan 30, 2024
1 parent 0fd4292 commit 9b151f9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: check
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: 'lts/*'
- run: make
3 changes: 0 additions & 3 deletions .travis.yml

This file was deleted.

14 changes: 7 additions & 7 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![NPM version][npm-image]][npm-url]
[![Build Status][travis-image]][travis-url]
[![Dependency Status][gemnasium-image]][gemnasium-url]
[![Build Status][build-image]][build-url]
[![Dependency Status][deps-image]][deps-url]

# popup-clock

Expand Down Expand Up @@ -43,11 +43,11 @@ Create a new Timepicker attached to `el` input DOM node

[popup-clock]: https://npmjs.org/package/popup-clock

[npm-image]: https://img.shields.io/npm/v/popup-clock.svg
[npm-image]: https://img.shields.io/npm/v/popup-clock
[npm-url]: https://npmjs.org/package/popup-clock

[travis-url]: https://travis-ci.org/pirxpilot/timepicker
[travis-image]: https://img.shields.io/travis/pirxpilot/timepicker.svg
[build-url]: https://github.com/pirxpilot/popup-clock/actions/workflows/check.yaml
[build-image]: https://img.shields.io/github/actions/workflow/status/pirxpilot/popup-clock/check.yaml?branch=main

[gemnasium-image]: https://img.shields.io/gemnasium/pirxpilot/timepicker.svg
[gemnasium-url]: https://gemnasium.com/pirxpilot/timepicker
[deps-image]: https://img.shields.io/librariesio/release/npm/popup-clock
[deps-url]: https://libraries.io/npm/popup-clock
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
"scripts": {
"test": "make check"
},
"repository": {
"type": "git",
"url": "https://github.com/pirxpilot/popup-clock.git"
},
"repository": "github:pirxpilot/popup-clock",
"keywords": [
"browser"
],
Expand Down

0 comments on commit 9b151f9

Please sign in to comment.