Skip to content

feat: styling changes #47

feat: styling changes

feat: styling changes #47

Workflow file for this run

name: Publish
on:
push:
branches:
- main
paths:
- 'packages/**'
jobs:
build-and-deploy:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm ci
- name: Build Library
run: npm run build
- name: Release
run: npm run semantic-release || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}