Skip to content

IconPromote: Update semantic icon from sparkles to a megaphone #6370

IconPromote: Update semantic icon from sparkles to a megaphone

IconPromote: Update semantic icon from sparkles to a megaphone #6370

Workflow file for this run

name: Validate
on:
- push
- pull_request
jobs:
test:
name: Lint & Test
if: (github.event_name != 'pull_request' && !github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork)
runs-on: ubuntu-latest
env:
CI: true
steps:
- name: Checkout Repo
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that chromatic can diff against previous commits
fetch-depth: 0
- name: Set up pnpm
uses: pnpm/action-setup@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: package.json
- name: Install Dependencies
run: pnpm i
- name: Lint
run: pnpm lint
- name: Build & Test
run: |
pnpm test
pnpm build
pnpm postbuild
- name: Chromatic
run: pnpm storybook:chromatic
env:
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_APP_CODE }}