Skip to content

feat(schema-engine-cli): add support for engine: 'classic' in Prism… #16733

feat(schema-engine-cli): add support for engine: 'classic' in Prism…

feat(schema-engine-cli): add support for engine: 'classic' in Prism… #16733

Workflow file for this run

name: 'All crates: linting'
on:
push:
branches:
- main
pull_request:
paths-ignore:
- '.github/**'
- '!.github/workflows/formatting.yml'
- '*.md'
- 'LICENSE'
- 'CODEOWNERS'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
name: run lints and formatting checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
targets: wasm32-unknown-unknown
- run: make pedantic
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
prettier-typescript:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- run: npx prettier@3 --check '**/*.ts'