chore(deps-dev): bump brace-expansion from 5.0.5 to 5.0.7 in /app/client-next-ts #932
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
| # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| # | |
| # Showcase depends on @jpmorgan-payments/embedded-finance-components via file:../../embedded-components — the library | |
| # must be installed and built (dist/) before the app build, same order as amplify.yml. | |
| name: Build & Test Showcase | |
| on: | |
| push: | |
| paths: | |
| - "app/client-next-ts/**" | |
| - "embedded-components/**" | |
| pull_request: | |
| paths: | |
| - "app/client-next-ts/**" | |
| - "embedded-components/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Install and build embedded-components | |
| env: | |
| YARN_ENABLE_HARDENED_MODE: 0 | |
| run: yarn install && yarn build | |
| working-directory: ./embedded-components | |
| - name: Install modules | |
| run: npm install | |
| working-directory: ./app/client-next-ts | |
| - name: Build | |
| run: npm run build | |
| working-directory: ./app/client-next-ts | |
| - name: Run tests | |
| run: npm run test | |
| working-directory: ./app/client-next-ts |