Skip to content

feat(sdk): support custom port for router resource #622

feat(sdk): support custom port for router resource

feat(sdk): support custom port for router resource #622

Workflow file for this run

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: CI
on:
push:
pull_request:
jobs:
build-and-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Install Graphviz
run: sudo apt-get install -y graphviz
- uses: actions/checkout@v3
# Check for any dead links.
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: "yes"
config-file: ".github/mlc_config.json"
- uses: actions/setup-node@v3
with:
node-version: 20
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- uses: pnpm/action-setup@v4
- name: Prepare dependent packages
run: bash scripts/prepare.sh
- name: Install dependencies
run: pnpm install && pip install -r requirements.txt
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test