Skip to content

fix: Remove button dependency on external css file #1

fix: Remove button dependency on external css file

fix: Remove button dependency on external css file #1

Workflow file for this run

name: Validate Pull Request
on:
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
jobs:
validate-pr:
if: (github.event_name == 'pull_request' && github.event.action != 'closed')
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Run unit tests
run: |
npm install
- name: Build Storybook
run: |
npm run build-storybook