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 cf61e267ecec3f5b9a78cca801ac8aaa339515a0
16 changes: 8 additions & 8 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Pull Request"
name: 'Pull Request'
on:
pull_request:
types: [opened, reopened, synchronize]
Expand All @@ -11,15 +11,15 @@ jobs:
node: [14, 16, 18]
name: Node ${{ matrix.node }}
steps:
- name: "Checkout latest code"
- name: 'Checkout latest code'
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "npm"
cache: 'npm'
- name: Install latest NPM version
run: npm install -g npm@9
- name: Install dependencies
Expand All @@ -28,7 +28,7 @@ jobs:
run: npm run test

lint:
name: "ESLint"
name: 'ESLint'
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
Expand All @@ -38,15 +38,15 @@ jobs:
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: "16"
cache: "npm"
node-version: '16'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint:check

prettier:
name: "Prettier"
name: 'Prettier'
runs-on: ubuntu-latest
steps:
- name: Checkout latest code
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: '16'
- name: Install dependencies
run: npm ci
- name: Run Prettier
Expand Down
0