Skip to content

Allow API gateway route to be configured with a JWT authorizer #53

Allow API gateway route to be configured with a JWT authorizer

Allow API gateway route to be configured with a JWT authorizer #53

Workflow file for this run

name: "Integration Tests"
on:
workflow_dispatch:
pull_request:
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
integration-tests:
runs-on: ubuntu-latest
permissions:
contents: "read"
id-token: "write"
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Set up pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install
run: pnpm install
- name: Build
run: pnpm build
- name: Install local bin scripts
run: pnpm install
- name: Test
run: pnpm test:once