Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
chore(deps-dev): bump serverless from 3.38.0 to 4.4.3 (#240)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump serverless from 3.38.0 to 4.4.3

Bumps [serverless](https://github.com/serverless/serverless) from 3.38.0 to 4.4.3.
- [Release notes](https://github.com/serverless/serverless/releases)
- [Changelog](https://github.com/serverless/serverless/blob/main/CHANGELOG.md)
- [Commits](https://github.com/serverless/serverless/commits)

---
updated-dependencies:
- dependency-name: serverless
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix

* fix

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Julian Grinblat <[email protected]>
  • Loading branch information
dependabot[bot] and perrin4869 committed Oct 9, 2024
1 parent 48cd3f9 commit 940a0d0
Show file tree
Hide file tree
Showing 8 changed files with 3,584 additions and 17,493 deletions.
8 changes: 7 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@
"unicorn/no-anonymous-default-export": 0,
"unicorn/filename-case": ["error", { "case": "camelCase" }],
"@eslint-community/eslint-comments/no-unused-disable": "error",
"import/extensions": 0
"import/extensions": 0,
"n/no-missing-import": [
"error",
{
"ignoreTypeImport": true
}
]
},
"overrides": [
{
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:

- name: Test
run: npm test
env:
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Publish
run: npm publish
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
- 18.x
- 20.x
- 22.x
serverless-version:
- 3
- 4

steps:
- uses: actions/checkout@v4
Expand All @@ -27,6 +30,9 @@ jobs:
- name: Install dependencies
uses: bahmutov/npm-install@v1

- name: Install serverless ${{ matrix.serverless-version }}
run: npm install serverless@${{ matrix.serverless-version }}

- name: Lint
run: npm run lint

Expand All @@ -35,6 +41,10 @@ jobs:

- name: Test
run: npm run cover
env:
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Publish to coveralls.io
uses: coverallsapp/github-action@master
Expand Down
1 change: 1 addition & 0 deletions .mocharc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"reporter": "spec",
"ui": "bdd",
"timeout": 30000,
"extension": ["js", "ts"],
"loader": "ts-node/esm",
"require": ["./test/setup.js"]
Expand Down
Loading

0 comments on commit 940a0d0

Please sign in to comment.