Skip to content

Commit

Permalink
Merge pull request #164 from MikeMcC399/fix-version-tests
Browse files Browse the repository at this point in the history
ci: remove dependency on semantic-release npm
  • Loading branch information
jennifer-shehane committed Apr 12, 2024
2 parents 1e9520d + f7b1196 commit fa4ed02
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: npm ci
- run:
name: Lint code
command: npm run lint
Expand All @@ -39,10 +39,13 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: npm ci
- run:
name: Install ESLint 4
command: npm install eslint@4
- run:
name: Test ESLint 4
command: npm run test:v4
command: npm test

test-v5:
docker:
Expand All @@ -51,10 +54,13 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: npm ci
- run:
name: Install ESLint 5
command: npm install eslint@5
- run:
name: Test ESLint 5
command: npm run test
command: npm test

test-v6:
docker:
Expand All @@ -63,10 +69,13 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: npm ci
- run:
name: Install ESLint 6
command: npm install eslint@6
- run:
name: Test ESLint 6
command: npm run test:v6
command: npm test

release:
docker:
Expand All @@ -75,7 +84,7 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: npm ci
- run:
name: Run semantic release
command: npm run semantic-release

0 comments on commit fa4ed02

Please sign in to comment.