8000 feat(options): allow to control headers casing by naorpeled · Pull Request #246 · jeremydaly/lambda-api · GitHub
[go: up one dir, main page]

Skip to content

feat(options): allow to control headers casing #246

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

Draft
wants to merge 22 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
.
  • Loading branch information
naorpeled committed Sep 3, 2023
commit d3e70b34a692086efee4e9ef9b7926ca532f5564
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18]
Expand All @@ -21,7 +21,7 @@ jobs:
node-version: ${{ matrix.node }}
cache: "npm"
- name: Install latest NPM version
run: npm install -g npm@latest
run: npm install -g npm@9
- name: Install dependencies
run: npm ci
- name: Run tests
Expand Down
0