fix: use same host for websocket server as for http server when previewing locally #3732
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: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- name: Typecheck | |
run: npm run typecheck | |
- name: Unit Tests | |
run: npm run jest -- --silent --ci --testLocationInResults --bail --coverage | |
- 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: 18 | |
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: 18 | |
cache: 'npm' | |
- name: Coverage Report | |
uses: artiomtr/[email protected] | |
continue-on-error: true | |
with: | |
skip-step: none | |
annotations: none | |
test-script: npm run jest | |
prettier-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- run: npm run prettier:check | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
env: | |
CI: true | |
- run: npm run eslint |