Skip to content

Commit fa4ed02

Browse files
Merge pull request #164 from MikeMcC399/fix-version-tests
ci: remove dependency on semantic-release npm
2 parents 1e9520d + f7b1196 commit fa4ed02

File tree

1 file changed

+17
-8
lines changed

1 file changed

+17
-8
lines changed

circle.yml

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- checkout
2828
- run:
2929
name: Install dependencies
30-
command: npm install
30+
command: npm ci
3131
- run:
3232
name: Lint code
3333
command: npm run lint
@@ -39,10 +39,13 @@ jobs:
3939
- checkout
4040
- run:
4141
name: Install dependencies
42-
command: npm install
42+
command: npm ci
43+
- run:
44+
name: Install ESLint 4
45+
command: npm install eslint@4
4346
- run:
4447
name: Test ESLint 4
45-
command: npm run test:v4
48+
command: npm test
4649

4750
test-v5:
4851
docker:
@@ -51,10 +54,13 @@ jobs:
5154
- checkout
5255
- run:
5356
name: Install dependencies
54-
command: npm install
57+
command: npm ci
58+
- run:
59+
name: Install ESLint 5
60+
command: npm install eslint@5
5561
- run:
5662
name: Test ESLint 5
57-
command: npm run test
63+
command: npm test
5864

5965
test-v6:
6066
docker:
@@ -63,10 +69,13 @@ jobs:
6369
- checkout
6470
- run:
6571
name: Install dependencies
66-
command: npm install
72+
command: npm ci
73+
- run:
74+
name: Install ESLint 6
75+
command: npm install eslint@6
6776
- run:
6877
name: Test ESLint 6
69-
command: npm run test:v6
78+
command: npm test
7079

7180
release:
7281
docker:
@@ -75,7 +84,7 @@ jobs:
7584
- checkout
7685
- run:
7786
name: Install dependencies
78-
command: npm install
87+
command: npm ci
7988
- run:
8089
name: Run semantic release
8190
command: npm run semantic-release

0 commit comments

Comments
 (0)