chore(deps): bump brace-expansion in /embedded-components #2931
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, run tests, | |
| # and build Storybook for the embedded-components package. | |
| # Runs on push and pull_request so PRs cannot be merged when build, tests, or Storybook build fail. | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
| name: Build & Test EB Components | |
| on: | |
| push: | |
| paths: | |
| - "embedded-components/**" | |
| pull_request: | |
| paths: | |
| - "embedded-components/**" | |
| jobs: | |
| build-and-test: | |
| defaults: | |
| run: | |
| working-directory: "./embedded-components" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install modules | |
| env: | |
| YARN_ENABLE_HARDENED_MODE: 0 | |
| run: yarn install | |
| - name: Build | |
| run: yarn build | |
| - name: Run tests | |
| run: yarn run test | |
| - name: Build Storybook | |
| run: yarn storybook:build |