Skip to content

Commit

Permalink
feat: additional utils and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dammy001 committed Jan 15, 2023
1 parent 3e14bc0 commit be59551
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,32 @@ jobs:
- name: Lint
run: pnpm run build

test:
runs-on: ${{ matrix.os }}

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/[email protected]

- name: Set node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: "pnpm"

- name: Install
run: pnpm i

- name: Test Cases
run: pnpm run test

typecheck:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit be59551

Please sign in to comment.