Skip to content

feat: Update button style - border radius to 100px #338

feat: Update button style - border radius to 100px

feat: Update button style - border radius to 100px #338

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- "README.md"
- "CHANGELOG.md"
pull_request:
paths-ignore:
- "README.md"
- "CHANGELOG.md"
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
npm config set loglevel verbose
timeout 300s npm install --no-fund --no-audit
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Docs
run: npm run gh-pages
- name: Test
run: node_modules/.bin/serve --listen 3000 gh-pages/ & yarn test
- name: Deploy docs
uses: peaceiris/actions-gh-pages@v3
if: github.event_name == 'push'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./gh-pages
- name: Publish npm
if: github.event_name == 'push'
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}