Skip to content

Commit 62e3963

Browse files
committed
chore: 🤖 travis-ci.org => travis-ci.com
1 parent 3c5de36 commit 62e3963

File tree

4 files changed

+128
-54
lines changed

4 files changed

+128
-54
lines changed

.travis.yml

+14-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1+
sudo: false
12
language: node_js
23
node_js:
3-
- '8'
4-
- '10'
5-
- '11'
6-
sudo: false
4+
- '14'
5+
- '16'
6+
cache:
7+
npm: false
8+
directories:
9+
- '~/.pnpm-store'
10+
before_install:
11+
- curl -f https://get.pnpm.io/v6.7.js | node - add --global pnpm@6
12+
- pnpm config set store-dir ~/.pnpm-store
13+
install:
14+
- pnpm install
715
script:
8-
- "npm run test"
16+
- 'pnpm run test'
917
after_script:
10-
- "npx codecov"
18+
- 'codecov'

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
`Use URI style methods to operate data.`
66
All operations friendly support Vue-like frameworks.
77

8-
[![Build Status](https://api.travis-ci.org/aligay/jsonuri.svg?branch=master)](https://travis-ci.org/aligay/jsonuri/branches)
8+
[![Build Status](https://travis-ci.com/aligay/jsonuri.svg?branch=master)](https://travis-ci.com/github/aligay/jsonuri/branches)
99
[![codecov](https://codecov.io/gh/aligay/jsonuri/branch/master/graph/badge.svg)](https://codecov.io/gh/aligay/jsonuri/branch/master)
1010
[![npm](https://img.shields.io/npm/v/jsonuri.svg)](https://www.npmjs.com/package/jsonuri)
1111
[![dependencies Status](https://david-dm.org/aligay/jsonuri/status.svg)](https://david-dm.org/aligay/jsonuri)

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@
4545
"@babel/preset-env": "^7.14.8",
4646
"@babel/preset-typescript": "^7.14.5",
4747
"@types/jest": "^26.0.24",
48-
"@types/node": "^16.4.1",
48+
"@types/node": "^16.4.3",
4949
"@typescript-eslint/eslint-plugin": "^4.28.4",
50+
"codecov": "^3.8.3",
5051
"eslint": "^7.31.0",
5152
"eslint-config-standard-with-typescript": "^20.0.0",
5253
"eslint-plugin-import": "^2.23.4",
5354
"eslint-plugin-node": "^11.1.0",
5455
"eslint-plugin-prefer-arrow": "^1.2.3",
5556
"eslint-plugin-promise": "^5.1.0",
56-
"eslint-plugin-standard": "^4.1.0",
5757
"gh-pages": "^3.2.3",
5858
"ghooks": "^2.0.4",
5959
"imod": "^1.5.0",

0 commit comments

Comments
 (0)