fix(Accordion): implement css adjustments and native details #1588
Workflow file for this run
This file contains 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 Storefront | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- 'apps/storefront/**' | |
jobs: | |
checks: | |
name: Build & test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use node 20 and yarn cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Build packages | |
run: yarn build | |
- name: Build storefront | |
run: yarn build:storefront | |
- name: Types | |
run: yarn types:storefront | |