Skip to content

Commit 70b27a8

Browse files
authored
Merge pull request #23 from ember-cli-deploy/update-deps
Update dependencies and node version requirements
2 parents 11a7c78 + 7598e01 commit 70b27a8

File tree

4 files changed

+3515
-3076
lines changed

4 files changed

+3515
-3076
lines changed

.github/workflows/ci.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
name: Test
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node-version: [14.x, 16.x, 18.x, 20.x]
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
cache: 'yarn'
21+
- run: yarn install
22+
- run: yarn test
23+
24+
test-floating:
25+
name: Floating Dependencies
26+
runs-on: ubuntu-latest
27+
strategy:
28+
matrix:
29+
node-version: [14.x, 16.x, 18.x, 20.x]
30+
steps:
31+
- uses: actions/checkout@v2
32+
- name: Use Node.js ${{ matrix.node-version }}
33+
uses: actions/setup-node@v3
34+
with:
35+
node-version: ${{ matrix.node-version }}
36+
cache: 'yarn'
37+
- name: install dependencies
38+
run: yarn install --no-lockfile
39+
- name: test
40+
run: yarn test

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

package.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,32 @@
1212
"autotest": "node node_modules/mocha/bin/mocha --watch --reporter spec tests/**/*-test.js"
1313
},
1414
"engines": {
15-
"node": "6.* || >= 8.*"
15+
"node": "14.* || 16.* || 18.* || >= 20.*"
1616
},
1717
"author": "",
1818
"license": "MIT",
1919
"devDependencies": {
20-
"chai": "^3.0.0",
21-
"chai-as-promised": "^6.0.0",
22-
"ember-cli": "^3.1.0",
23-
"ember-cli-release": "^1.0.0-beta.2",
24-
"eslint": "^3.18.0",
25-
"github": "^9.2.0",
26-
"mocha": "^3.2.0",
27-
"multiline": "^1.0.2",
28-
"sinon": "^2.0.0"
20+
"chai": "^4.3.7",
21+
"chai-as-promised": "^7.1.1",
22+
"ember-cli": "^3.28.6",
23+
"eslint": "^8.42.0",
24+
"github": "^14.0.0",
25+
"mocha": "^10.2.0",
26+
"multiline": "^2.0.0",
27+
"sinon": "^2.4.1"
2928
},
3029
"keywords": [
3130
"ember-addon",
3231
"ember-cli-deploy-plugin"
3332
],
3433
"dependencies": {
35-
"chalk": "^1.0.0",
36-
"core-object": "^2.0.0",
37-
"ember-cli-deploy-plugin": "^0.2.3",
34+
"chalk": "^1.1.3",
35+
"core-object": "^2.1.1",
36+
"ember-cli-deploy-plugin": "^0.2.9",
3837
"moment": "^2.17.1",
3938
"node-slackr": "^0.2.0",
40-
"rsvp": "^3.5.0",
41-
"silent-error": "^1.0.0"
39+
"rsvp": "^4.8.5",
40+
"silent-error": "^1.1.1"
4241
},
4342
"ember-addon": {
4443
"configPath": "tests/dummy/config"

0 commit comments

Comments
 (0)