Files
api/.github/workflows/pull-request-web.yml
2023-08-08 13:19:25 -07:00

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