Add more CI Checks #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linting | |
"on": | |
pull_request: | |
paths: | |
- src/** | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Project Setup | |
uses: ./.github/workflows/steps/project-setup | |
- name: OpenAPI Lint | |
run: bun run lint | |
- name: Install Speakeasy CLI | |
run: bun run setup-speakeasy-cli | |
- name: Bundle OpenAPI Spec | |
run: bun run build | |
- name: OpenAPI Lint On Bundled Spec | |
run: bun run lint-bundled |