Skip to content

feat: update nodejs lambda to the latest standards and packages #1469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ jobs:
${{ runner.os }}-node-
- run: npm install
working-directory: nodejs
- run: npm run lint
working-directory: nodejs
- run: npm test
working-directory: nodejs
2 changes: 1 addition & 1 deletion .github/workflows/release-layer-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
needs: build-layer
strategy:
matrix:
aws_region:
aws_region:
- ap-northeast-1
- ap-northeast-2
- ap-south-1
Expand Down
6 changes: 0 additions & 6 deletions nodejs/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,6 @@ typings/
# next.js build output
.next

# lock files
yarn.lock
package-lock.json
packages/**/yarn.lock
packages/**/package-lock.json

# docs files
docs

Expand Down
2 changes: 1 addition & 1 deletion nodejs/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports = {
"@typescript-eslint/no-inferrable-types": ["error", { ignoreProperties: true }],
"arrow-parens": ["error", "as-needed"],
"prettier/prettier": ["error", { "singleQuote": true, "arrowParens": "avoid" }],
"node/no-deprecated-api": ["warn"]
"@typescript-eslint/no-require-imports": "off",
},
overrides: [
{
Expand Down
6 changes: 0 additions & 6 deletions nodejs/lerna.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
{
"lerna": "3.13.4",
"npmClient": "npm",
"packages": [
"packages/*",
"sample-apps/*"
],
"version": "0.0.0",
"changelog": {
"repo": "open-telemetry/opentelemetry-lambda",
Expand Down
Loading
Loading