feat(typings): update OpenAPI 3.0 and 3.1 typing declarations #5494
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: Build and Test | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Unit Tests | |
run: npm run unit | |
- name: E2E Tests | |
run: npm run e2e | |
env: | |
CI: true | |
cli-package-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- name: Prepare CLI and Core packages | |
run: npm run pack:prepare | |
- name: Install CLI Package | |
run: npm install -g redocly-cli.tgz | |
- name: Redocly version | |
run: redocly --version | |
- name: Definition test | |
run: redocly lint packages/core/src/benchmark/benches/rebilly.yaml --format=stylish | |
coverage-report: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Coverage Report | |
uses: artiomtr/jest-coverage-report-action@v2.0.8 | |
continue-on-error: true | |
with: | |
skip-step: none | |
annotations: none | |
test-script: npm run jest | |
code-style-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- run: npm run eslint | |
- run: npm run prettier:check |