Skip to content

Add getAzExtResourceType function #382

Add getAzExtResourceType function

Add getAzExtResourceType function #382

Workflow file for this run

name: 'API: Generate and Rollup Typings'
# Runs the api-extractor tool to verify generating and rolling up API typings doesn't fail
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
api-extractor:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install dependencies
run: npm ci
- name: Run api-extractor
run: npm run api-extractor