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 Feb 7, 2024
1 parent cd9c537 commit 1ee46b2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: 'lts/*'
- run: yarn install
- run: make check
5 changes: 0 additions & 5 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]

# vis-why

Expand Down Expand Up @@ -51,11 +51,11 @@ simplify(poly, 4, area);
[npm]: https://www.npmjs.org/
[vis-why]: https://hydra.hull.ac.uk/resources/hull:8338

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

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

[gemnasium-image]: https://img.shields.io/gemnasium/pirxpilot/vis-why.svg
[gemnasium-url]: https://gemnasium.com/pirxpilot/vis-why
[deps-image]: https://img.shields.io/librariesio/release/npm/vis-why
[deps-url]: https://libraries.io/npm/vis-why
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@
"scripts": {
"test": "make check"
},
"repository": {
"type": "git",
"url": "https://github.com/pirxpilot/vis-why.git"
},
"repository": "pirxpilot/vis-why",
"keywords": [
"line",
"simplification"
Expand All @@ -30,4 +27,4 @@
"files": [
"index.js"
]
}
}

0 comments on commit 1ee46b2

Please sign in to comment.