[OPENVINO-CODE] updated version for marketplace publish #97
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: OpenVINO Code Extension Workflow | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- 'modules/openvino_code/**' | |
- '.github/workflows/openvino_code.yml' | |
concurrency: | |
group: ${{ github.head_ref || github.ref_name }}-openvino_code | |
cancel-in-progress: true | |
defaults: | |
run: | |
working-directory: ./modules/openvino_code | |
jobs: | |
check_extension: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16.x' | |
cache: 'npm' | |
cache-dependency-path: modules/openvino_code/package-lock.json | |
- name: Install dependencies | |
run: npm ci | |
- name: Run Lint | |
run: npm run lint:all | |
check_server: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
cache: 'pip' | |
- name: Install dependencies | |
run: pip install ruff black | |
- name: Lint with ruff and Black | |
run: | | |
cd server | |
ruff check . | |
black --check . |