This repository has been archived by the owner on Jul 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add initial circleci config * Add typescript to dev deps
- Loading branch information
1 parent
aa2b078
commit a9c013b
Showing
4 changed files
with
2,944 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2.0 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/node:10.13.0 | ||
steps: | ||
- checkout | ||
- run: | ||
name: install | ||
command: npm install --only=dev | ||
- run: | ||
name: lint | ||
command: npx eslint --fix-dry-run 'types/*' | ||
# TODO: Add integration tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.