Skip to content

Commit

Permalink
chore: add circleci setup
Browse files Browse the repository at this point in the history
  • Loading branch information
sbycrosz committed Jul 19, 2024
1 parent 62a415a commit a4adfd5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: 2.1

jobs:
test:
docker:
- image: cimg/node:22.5.0

steps:
- checkout
- run: node --version
- run: yarn install
- run: yarn typecheck
- run: yarn lint
- run: yarn test

workflows:
test-workflow:
jobs:
- test

0 comments on commit a4adfd5

Please sign in to comment.