Skip to content

refactor(repo): address walkthrough comments #257

refactor(repo): address walkthrough comments

refactor(repo): address walkthrough comments #257

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ main ]
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: 'pnpm'
- name: Install Dependencies
run: pnpm run verify-deps
- name: Lint Code
run: pnpm run lint
- name: Test Typings
run: pnpm run test:typings
- name: Test Unit
run: pnpm run test:unit