feat: theme plugin add css var param #30
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
name: test | |
on: [push, pull_request] | |
jobs: | |
jest: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Install pnpm | |
run: npm i -g pnpm@9 | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run unit test | |
run: pnpm run test:unit | |
- name: Run build lib | |
run: pnpm run build:lib |