Add support for modifying doc links and add support for different links for Rancher Prime #9540
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
name: check-plugins-build | |
on: | |
pull_request: | |
branches: | |
- master | |
env: | |
TEST_PERSIST_BUILD: true | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
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@v4 | |
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 |