Skip to content

fix: CreateAuthorizationResourceOptions type definition (#1530) #5104

fix: CreateAuthorizationResourceOptions type definition (#1530)

fix: CreateAuthorizationResourceOptions type definition (#1530) #5104

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
pull_request: {}
defaults:
run:
shell: bash
jobs:
test:
name: Test Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [20, 22, 24]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # 6.3.0
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: |
npm install
- name: Prettier
run: |
npm run prettier
- name: Lint
run: |
npm run lint
- name: Typecheck
run: |
npm run typecheck
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test