dummy control for testing validate action build #383
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: Validate PR | |
| on: pull_request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Validate | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| component-directory: | |
| - "./AutoWidthLabel" | |
| - "./Breadcrumb" | |
| - "./Calendar" | |
| - "./Card" | |
| - "./CommandBar" | |
| - "./ContextMenu" | |
| - "./ControlForTesting" | |
| - "./DetailsList" | |
| - "./DonutChart" | |
| - "./Elevation" | |
| - "./Facepile" | |
| - "./FluentMessageBar" | |
| - "./GaugeChart" | |
| - "./HorizontalBarChart" | |
| - "./Icon" | |
| - "./KeyboardShortcuts" | |
| - "./ModernThemeGenerator" | |
| - "./Nav" | |
| - "./PeoplePicker" | |
| - "./Persona" | |
| - "./Picker" | |
| - "./Pivot" | |
| - "./ProgressIndicator" | |
| - "./ResizableTextarea" | |
| - "./SearchBox" | |
| - "./Shimmer" | |
| - "./SpinButton" | |
| - "./Spinner" | |
| - "./StackedBarChart" | |
| - "./SubwayNav" | |
| - "./TagList" | |
| defaults: | |
| run: | |
| working-directory: ${{ matrix.component-directory }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - name: Install dependencies | |
| run: npm ci | |
| - run: npm run build |