Skip to content

Commit 16aaf15

Browse files
author
Dan Wilson
authored
Merge pull request #32 from d1wilko/update-package-versions
update package versions and fix broken test
2 parents 272404c + 9a9c374 commit 16aaf15

File tree

4 files changed

+1170
-955
lines changed

4 files changed

+1170
-955
lines changed

.drone.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ platform:
88

99
steps:
1010
- name: install
11-
image: node:13.10-alpine
11+
image: node:16.14-alpine
1212
commands:
1313
- yarn install --frozen-lockfile
1414

1515
- name: lint
16-
image: node:13.10-alpine
16+
image: node:16.14-alpine
1717
commands:
1818
- yarn lint
1919

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
"homepage": "https://github.com/drone/drone-node#readme",
2020
"dependencies": {
2121
"@hapi/joi": "^17.1.0",
22-
"axios": "^0.21.1",
23-
"querystring": "^0.2.0"
22+
"axios": "^0.26.0",
23+
"querystring": "^0.2.1"
2424
},
2525
"devDependencies": {
26-
"@hapi/code": "^8.0.1",
27-
"@hapi/lab": "^22.0.3",
28-
"eslint": "^6.8.0",
29-
"eslint-config-standard": "^14.1.0",
26+
"@hapi/code": "^8.0.7",
27+
"@hapi/lab": "^24.5.1",
28+
"eslint": "^8.10.0",
29+
"eslint-config-standard": "^16.0.3",
3030
"eslint-plugin-import": "^2.20.1",
3131
"eslint-plugin-node": "^11.0.0",
32-
"eslint-plugin-promise": "^4.2.1",
33-
"eslint-plugin-standard": "^4.0.1"
32+
"eslint-plugin-promise": "^6.0.0",
33+
"eslint-plugin-standard": "^5.0.0"
3434
}
3535
}

test/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const client = new Drone.Client({
1313
token: process.env.DRONE_TOKEN
1414
})
1515

16-
experiment('integration', async () => {
16+
experiment('integration', () => {
1717
it('can get the current user', async () => {
1818
const res = await client.getSelf()
1919
expect(res).to.be.an.object()

0 commit comments

Comments
 (0)