Skip to content

Commit

Permalink
fix: Remove dependabot. Fix package paths (#92)
Browse files Browse the repository at this point in the history
* fix: Remove dependabot. Fix package paths

* test: Switch from Circle to Github Actions

* test: Remove --reporters option
  • Loading branch information
tmcw authored Oct 24, 2022
1 parent 5b2018b commit 5890845
Show file tree
Hide file tree
Showing 6 changed files with 5,733 additions and 37 deletions.
19 changes: 0 additions & 19 deletions .circleci/config.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/dependabot.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, build, and test
run: |
yarn install
yarn test
env:
CI: true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
node_modules
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/node-geojson/geojson-flatten.git"
"url": "git://github.com/tmcw/geojson-flatten.git"
},
"keywords": [
"geojson",
Expand All @@ -35,9 +35,9 @@
"author": "Tom MacWright",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/node-geojson/geojson-flatten/issues"
"url": "https://github.com/tmcw/geojson-flatten/issues"
},
"homepage": "https://github.com/node-geojson/geojson-flatten",
"homepage": "https://github.com/tmcw/geojson-flatten",
"dependencies": {
"get-stdin": "^8.0.0",
"minimist": "^1.2.5"
Expand Down
Loading

0 comments on commit 5890845

Please sign in to comment.