mirror of
https://github.com/unraid/api.git
synced 2026-01-03 23:19:54 -06:00
21 lines
408 B
YAML
21 lines
408 B
YAML
name: Pull Request Web
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'web/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-web
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
lint-web:
|
|
defaults:
|
|
run:
|
|
working-directory: web
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Lint, Test, and Build Web Components
|
|
uses: unraid/lint-test-build-web
|