style(buttons): Remove text-transform uppercase from .btn:not(.dropdo… #343
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |