Migrate datalayer specific code to core, update collaboration, state … #865
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
name: Build | |
on: | |
push: | |
branches: 'main' | |
pull_request: | |
branches: '*' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Run build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
# os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install the npm dependencies | |
run: | | |
npm install | |
- name: Run the build | |
run: | | |
npm run build | |
storybook-test: | |
name: Test Storybook Stories and Docs | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Dependencies | |
run: npm install | |
- name: Build all packages | |
run: npm run build | |
- name: Install Playwright | |
run: npx playwright install chromium --with-deps | |
working-directory: storybook | |
- name: Build Storybook | |
run: npm run build:storybook | |
working-directory: storybook | |
- name: Serve Storybook and run all tests | |
run: | | |
npx serve -l 6006 storybook-static & | |
npx wait-on http://localhost:6006 --timeout 30000 | |
npm run test:all:ci | |
working-directory: storybook | |
- name: Upload test results | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: storybook-test-results | |
path: | | |
storybook/test-results/ | |
storybook/html-report/ |