Skip to content

🐛 add 0 padding to single digit month #5

🐛 add 0 padding to single digit month

🐛 add 0 padding to single digit month #5

Workflow file for this run

name: Deploy chromatic
on:
push:
branches:
- "**"
jobs:
deploy-chromatic:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 8
run_install: false
- name: Install dependencies
run: pnpm install
- name: Deploy chromatic
uses: chromaui/action@latest
with:
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
- name: Clean up
run: |
ls -la ./
rm -rf ./*
- name: Clear cache of npm
run: pnpm store prune