This repository was archived by the owner on Aug 6, 2025. It is now read-only.
DOP-5854: only build one version for associated products at a time #2777
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| # Checks for changes outside of /modules directory | |
| changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| autobuilder: ${{ steps.filter.outputs.autobuilder }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dorny/paths-filter@v2 | |
| id: filter | |
| with: | |
| # set autobuilder filter true | |
| # if any changes outside of modules directory | |
| filters: | | |
| autobuilder: | |
| - '!(modules/**)' | |
| test: | |
| needs: changes | |
| if: ${{ needs.changes.outputs.autobuilder == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - name: Install dependencies | |
| run: npm install --dev | |
| - name: Lint | |
| run: npm run lint && npm run format | |
| - name: Test | |
| run: npm test |