Skip to content

Commit

Permalink
[chore] bump dependencies - enchance github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispanag committed Nov 29, 2021
1 parent 18fd89b commit e9921e5
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 274 deletions.
27 changes: 23 additions & 4 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,37 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 17.x]
node-version: [16.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
- name: build
run: |
yarn install
npx lerna bootstrap
npx lerna run build
yarn lerna bootstrap
yarn lerna run build
env:
CI: true
lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.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: lint
run: |
yarn install
yarn lerna run lint
env:
CI: true
4 changes: 1 addition & 3 deletions examples/insta-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
"@ebenos/elements": "^4.0.0-alpha.29",
"@ebenos/framework": "^4.0.0-alpha.29",
"@ebenos/messenger-adapter": "^4.0.0-alpha.29",
"@types/node-fetch": "^2.5.11",
"body-parser": "^1.19.0",
"node-fetch": "^2.6.1"
"dotenv": "^10.0.0"
}
}
5 changes: 1 addition & 4 deletions examples/test-adapter-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
},
"dependencies": {
"@ebenos/elements": "^4.0.0-alpha.29",
"@ebenos/framework": "^4.0.0-alpha.29",
"@types/node-fetch": "^2.5.11",
"body-parser": "^1.19.0",
"node-fetch": "^2.6.1"
"@ebenos/framework": "^4.0.0-alpha.29"
}
}
129 changes: 0 additions & 129 deletions examples/test-adapter-bot/src/scripts/install.ts

This file was deleted.

6 changes: 1 addition & 5 deletions examples/viber-demo-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
"@ebenos/elements": "^4.0.0-alpha.29",
"@ebenos/framework": "^4.0.0-alpha.29",
"@ebenos/viber-adapter": "^4.0.0-alpha.29",
"@types/dotenv": "^8.2.0",
"@types/node-fetch": "^2.5.11",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"node-fetch": "^2.6.1"
"dotenv": "^10.0.0"
}
}
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
],
"scripts": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"prettier": "^2.5.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.4"
"typescript": "^4.5.2"
},
"engines": {
"node": ">=14.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/cli-adapter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
],
"license": "MIT",
"dependencies": {
"@types/inquirer": "^7.3.3",
"inquirer": "^8.1.2",
"@types/inquirer": "^8.1.3",
"inquirer": "^8.2.0",
"rxjs": "^7.4.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"lodash": "^4.17.21",
"mongodb": "^4.2.0",
"mongoose": "^6.0.13"
"mongoose": "^6.0.14"
},
"devDependencies": {
"@types/lodash": "^4.14.177"
Expand Down
Loading

0 comments on commit e9921e5

Please sign in to comment.