Skip to content

chore(deps): bump brace-expansion from 5.0.6 to 5.0.7 in /embedded-components #934

chore(deps): bump brace-expansion from 5.0.6 to 5.0.7 in /embedded-components

chore(deps): bump brace-expansion from 5.0.6 to 5.0.7 in /embedded-components #934

# 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