We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fddaf6d commit 141b558Copy full SHA for 141b558
.circleci/config.yml
@@ -20,7 +20,14 @@ jobs:
20
root: *workspace
21
paths:
22
- .
23
-
+ test_lint:
24
+ docker:
25
+ - image: *build_image
26
+ working_directory: *workspace
27
+ steps:
28
+ - attach_workspace:
29
+ at: *workspace
30
+ - run: npm run lint
31
build:
32
docker:
33
- image: *build_image
@@ -43,6 +50,9 @@ workflows:
43
50
branches:
44
51
ignore:
45
52
- master
53
+ - test_lint:
54
+ requires:
55
+ - checkout_code
46
56
- build:
47
57
name: build_feature
48
58
requires:
.eslintignore
@@ -0,0 +1,6 @@
1
+/.next/
2
+/.circleci/
3
+/node_modules/
4
+/out/
5
+/public/
6
+/styles/
0 commit comments