fix: more navmenu customization thru css variables #109
This file contains 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
# Run unit tests via pnpm vitest | |
name: Run unit tests | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: ['master', 'main'] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
# Setup .npmrc file to publish to npm | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'pnpm' | |
- name: CI | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm test |