feat: DAG Behavioral Changes (Canvas resource, Source Models, ... buttons) #12449
This file contains hidden or 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: Web code quality checks | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/web-test.yml" | |
| - ".github/workflows/web-test-code-quality.yml" | |
| - "scripts/web-test-code-quality.sh" | |
| - "web-admin/**" | |
| - "web-common/**" | |
| - "web-local/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Filter modified codepaths | |
| uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| admin: | |
| - ".github/workflows/web-test.yml" | |
| - "web-admin/**" | |
| local: | |
| - ".github/workflows/web-test.yml" | |
| - "web-local/**" | |
| common: | |
| - ".github/workflows/web-test.yml" | |
| - "web-common/**" | |
| - name: Set up NodeJS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - name: Web code quality checks | |
| run: bash ./scripts/web-test-code-quality.sh | |
| env: | |
| ADMIN: ${{ steps.filter.outputs.admin }} | |
| LOCAL: ${{ steps.filter.outputs.local }} | |
| COMMON: ${{ steps.filter.outputs.common }} |