Skip to content

fix(styles): add size options #161

fix(styles): add size options

fix(styles): add size options #161

Workflow file for this run

name: Development
on:
push:
branches-ignore:
- main
jobs:
Test-Release:
name: 🚨 Test Release 🚨
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [18]
os: [ubuntu-latest]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: βŽ” Setup node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: πŸ“₯ Install deps
run: npm ci
- name: πŸ— Build
run: npm run build --if-present
- name: 🧩 Format
run: npm run format --if-present
- name: 🚨 Test
run: npm run test:ci --if-present
- name: πŸš€ Release Dry Run
run: npx semantic-release --dry-run --ci
env:
GITHUB_TOKEN: ${{ secrets.ACLU_BUILDER_TOKEN }}