Skip to content

Commit

Permalink
Merge pull request #51 from ember-cli-deploy/update-deps
Browse files Browse the repository at this point in the history
[BREAKING] Update dependencies and required node versions
  • Loading branch information
lukemelia authored Jun 4, 2023
2 parents 23cf317 + ebfbbbc commit 1c1ef1b
Show file tree
Hide file tree
Showing 4 changed files with 1,014 additions and 588 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Continuous Integration

on:
push:
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn test

test-floating:
name: Floating Dependencies
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: install dependencies
run: yarn install --no-lockfile
- name: test
run: yarn test
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
},
"repository": "https://github.com/ember-cli-deploy/ember-cli-deploy-manifest",
"engines": {
"node": ">= 10.*"
"node": "14.x || 16.x || 18.x || >= 20.*"
},
"author": "Luke Melia and ember-cli-deploy team",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"ember-cli": "^3.22.0",
"ember-cli-deploy-plugin": "^0.2.2",
"eslint": "^7.14.0",
"glob": "^7.1.6",
"ember-cli": "^3.28.6",
"ember-cli-deploy-plugin": "^0.2.9",
"eslint": "^8.42.0",
"glob": "^10.2.6",
"mocha": "^8.2.1",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
Expand Down
Loading

0 comments on commit 1c1ef1b

Please sign in to comment.