chore(monorepo): migrate frontend bundling from webpack to vite #1262
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
# This workflow runs tests and lint on non-release branches pushed that alter | |
# the usb-bridge subpackage | |
name: 'USB-Bridge test/lint' | |
on: | |
push: | |
paths: | |
- 'usb-bridge/**/*' | |
- 'Makefile' | |
- 'scripts/**/*.mk' | |
- 'scripts/**/*.py' | |
- '.github/workflows/usb-bridge-lint-test.yaml' | |
- '.github/actions/python/**' | |
branches: # ignore any release-related thing (handled elsewhere) | |
- 'edge' | |
tags-ignore: | |
- '*' | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
paths: | |
- 'usb-bridge/**/*' | |
- 'Makefile' | |
- 'scripts/**/*.mk' | |
- 'scripts/**/*.py' | |
- '.github/workflows/usb-bridge-lint-test.yaml' | |
- '.github/actions/python/**' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.ref_name != 'edge' || github.run_id}}-${{ github.ref_type != 'tag' || github.run_id }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
lint: | |
name: 'usb-bridge linting' | |
timeout-minutes: 10 | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
fetch-depth: 0 | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: '18.19.0' | |
- uses: 'actions/setup-python@v4' | |
with: | |
python-version: '3.10' | |
- uses: './.github/actions/python/setup' | |
with: | |
project: 'usb-bridge' | |
- name: Lint | |
run: make -C usb-bridge lint | |
test: | |
name: 'usb-bridge package tests' | |
timeout-minutes: 10 | |
needs: [lint] | |
runs-on: 'ubuntu-22.04' | |
steps: | |
- uses: 'actions/checkout@v3' | |
with: | |
fetch-depth: 0 | |
- uses: 'actions/setup-node@v3' | |
with: | |
node-version: '18.19.0' | |
- uses: 'actions/setup-python@v4' | |
with: | |
python-version: '3.10' | |
- uses: './.github/actions/python/setup' | |
with: | |
project: 'usb-bridge' | |
- name: Test | |
run: make -C usb-bridge test | |
- uses: 'codecov/codecov-action@v3' | |
with: | |
files: ./usb-bridge/coverage.xml | |
flags: usb-bridge |