Skip to content

remove console logs #709

remove console logs

remove console logs #709

# 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
name: Build & Test EB Components
on:
push:
paths:
- "embedded-components/**"
jobs:
build:
defaults:
run:
working-directory: "./embedded-components"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install modules
run: yarn install --immutable
- name: Build
run: yarn build
- name: Run tests
run: yarn run test