Skip to content

feat(modal): reuse general header #1085

feat(modal): reuse general header

feat(modal): reuse general header #1085

Workflow file for this run

# This Action should run on each PR by verifying if they pass on lint, test and build
name: CI
on:
push:
branches-ignore:
- main
- dev
jobs:
build:
name: Shoreline
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 25
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Test
run: pnpm test:ci
- name: Publish to Chromatic
uses: chromaui/action@v1
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
buildScriptName: build-storybook:ci
exitOnceUploaded: true