Remove type descriptions for repositories and installed apps pages #15542
Workflow file for this run
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: check-plugins-build | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| TEST_PERSIST_BUILD: true | |
| jobs: | |
| validate: | |
| if: "!contains( github.event.pull_request.labels.*.name, 'ci/skip-validate-plugins')" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'yarn' | |
| - name: Validate Plugin build system | |
| run: ./shell/scripts/test-plugins-build.sh | |
| shell: bash | |
| - name: Upload files | |
| uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0 | |
| if: failure() | |
| with: | |
| name: test | |
| path: | | |
| /tmp/tmp.**/test-app | |
| !/tmp/tmp.**/test-app/dist/js/*.map | |
| !/tmp/tmp.**/test-app/node_modules/ | |
| !/tmp/tmp.**/test-app/pkg/test-pkg/node_modules/ | |
| retention-days: 2 |