Skip to content

Commit

Permalink
chore: Add test circleci (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
haejunejung authored Aug 17, 2024
1 parent 180fa08 commit acce1b9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ commands:
yarn install
jobs:
test:
docker:
- image: cimg/node:20.12
steps:
- checkout
- setup
- run:
name: Run type check
command: yarn run test:tsc --noEmit
- run:
name: Run tsd
command: yarn run test:tsd
- run:
name: Run type-coverage
command: yarn run test:coverage

check-peer:
docker:
- image: cimg/node:20.12
Expand All @@ -40,3 +56,8 @@ workflows:
filters:
branches:
ignore: main

- test:
filters:
branches:
ignore: main

0 comments on commit acce1b9

Please sign in to comment.