Skip to content

fix(proxy-sigv4-backend): revert to old body serialization to fix bug with body type #49

fix(proxy-sigv4-backend): revert to old body serialization to fix bug with body type

fix(proxy-sigv4-backend): revert to old body serialization to fix bug with body type #49

name: Verify build and tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Run prettier
run: yarn prettier --check .
- name: Run tsc
run: yarn tsc
- name: Run build
run: yarn build
- name: Run test
run: yarn test