Skip to content

Commit

Permalink
Add circleci integration
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasG77 committed Oct 4, 2022
1 parent 00e2361 commit 3e251a0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
version: 2

jobs:
node:
docker:
- image: cimg/node:16.17.0
steps:
- checkout
- run:
name: Install using yarn
command: yarn
- run:
name: Run lint
command: yarn test
- run:
name: Run tests
command: yarn lint

workflows:
version: 2
build:
jobs:
- node

0 comments on commit 3e251a0

Please sign in to comment.