Skip to content

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

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 #2932

# 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