Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Evaldo Felipe <contato@evaldofelipe.com>
  • Loading branch information
evaldofelipe committed Oct 4, 2023
1 parent 8b2b5fc commit 8572076
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,26 @@ jobs:
cd test/
circleci tests glob "test/**/*.ts" | circleci tests split > /tmp/test-files
yarn test --bail ./$(echo '$(cat /tmp/test-files)')
lint:
docker:
- image: cimg/node:16.18.0
working_directory: ~/relayer-v2
resource_class: medium+
parallelism: 10
steps:
- restore_cache:
key: relayer-cache-{{ .Environment.CIRCLE_SHA1 }}
- run:
name: Run lint
command: yarn lint
workflows:
version: 2.1
build_and_test:
jobs:
- build
- lint:
requires:
- build
- test:
requires:
- build

0 comments on commit 8572076

Please sign in to comment.