Skip to content

fix(components): update wrapper class name #113

fix(components): update wrapper class name

fix(components): update wrapper class name #113

Workflow file for this run

name: Production
on:
push:
branches:
- main
jobs:
Publish:
name: πŸš€ Publish πŸš€
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
env:
GITHUB_TOKEN: ${{ secrets.ACLU_BUILDER_TOKEN }}
run: npx semantic-release --ci