Skip to content

ButtonIcon: Add ledger. #862

ButtonIcon: Add ledger.

ButtonIcon: Add ledger. #862

Workflow file for this run

name: Build and Test
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 19.x]
fail-fast: false
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 #v3.1.0
- name: Use nodejs ${{ matrix.node-version }}
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 #v3.5.1
with:
node-version: ${{ matrix.node-version }}
- name: yarn
run: yarn --network-concurrency 1
- name: tests
run: |
yarn test
env:
CI: true
- name: build
run: yarn build
- name: storybook build
run: yarn build-storybook