Skip to content

Commit

Permalink
add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pirxpilot committed Feb 22, 2024
1 parent 82329a4 commit 4994d6e
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 8 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check.yaml
@@ -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
14 changes: 7 additions & 7 deletions Readme.md
@@ -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]

# dump-tile

Expand All @@ -26,11 +26,11 @@ cat tile.pbf | dump-tile > tile.json

MIT © [Damian Krzeminski](https://furkot.com)

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

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

[gemnasium-image]: https://img.shields.io/gemnasium/pirxpilot/dump-tile.svg
[gemnasium-url]: https://gemnasium.com/pirxpilot/dump-tile
[deps-image]: https://img.shields.io/librariesio/release/npm/dump-tile
[deps-url]: https://libraries.io/npm/dump-tile
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -7,7 +7,7 @@
"email": "pirxpilot@furkot.com",
"url": "https://furkot.com"
},
"repository": "pirxpilot/dump-tile",
"repository": "github:pirxpilot/dump-tile",
"bin": "./index.js",
"license": "MIT",
"keywords": [
Expand Down

0 comments on commit 4994d6e

Please sign in to comment.