Skip to content

fix: Remove opacity from stepNodeContainerStyles to fix the storybook layout issue on Safari #332

fix: Remove opacity from stepNodeContainerStyles to fix the storybook layout issue on Safari

fix: Remove opacity from stepNodeContainerStyles to fix the storybook layout issue on Safari #332

Workflow file for this run

name: PR-gated
on:
pull_request:
branches: [main]
types: [opened, synchronize, reopened, ready_for_review]
workflow_dispatch:
jobs:
build:
if: github.event.pull_request.draft == false
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version:
- 18.x
- 20.x
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: yarn install
run: yarn --frozen-lockfile
- name: lint
run: yarn lint
- name: build
run: yarn build
- name: test
run: yarn test