chore(deps): update ui5 web components react (examples & templates) to v2 (major) #1553
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: Examples & Templates | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'examples/**/*' | |
- 'templates/**/*' | |
pull_request: | |
paths: | |
- 'examples/**/*' | |
- 'templates/**/*' | |
jobs: | |
examples: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- nextjs-app | |
- nextjs-pages | |
- vite-ts | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install | |
run: npm ci | |
working-directory: examples/${{ matrix.path }} | |
- name: Build | |
run: npm run build | |
working-directory: examples/${{ matrix.path }} | |
- name: Test | |
run: npm run test --if-present | |
working-directory: examples/${{ matrix.path }} | |
templates: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
path: | |
- nextjs-app | |
- nextjs-pages | |
- vite-ts | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.4 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install | |
run: npm ci | |
working-directory: templates/${{ matrix.path }} | |
- name: Build | |
run: npm run build | |
working-directory: templates/${{ matrix.path }} | |
- name: Test | |
run: npm run test --if-present | |
working-directory: templates/${{ matrix.path }} |