feat: set gray dash as CopyToClipboard empty value #1136
Workflow file for this run
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: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
types: [ready_for_review] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: pnpm 🧰 | |
uses: pnpm/[email protected] | |
with: | |
version: 7 | |
- name: Node 🧰 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: 'pnpm' | |
- name: Install 📦 | |
run: pnpm install | |
- name: Run Lint 💅 | |
run: pnpm lint | |
- name: Run TS check 🔎 | |
run: pnpm ts:check | |
- name: Run Unit Tests 🧪 | |
run: pnpm test |