add tests; add values #128
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: Quality | |
on: [push, pull_request] | |
jobs: | |
quality: | |
name: Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Node Setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: PNPM Setup | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
run_install: true | |
- name: Formatting | |
run: pnpm run format | |
- name: Lint | |
run: pnpm run lint | |
- name: Typing | |
run: pnpm run typecheck |