From f7b11968a1ecbfaf3e070d4e4ecc535448f886b6 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Fri, 12 Apr 2024 20:22:49 +0200 Subject: [PATCH] ci: remove dependency on semantic-release npm --- circle.yml | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/circle.yml b/circle.yml index 34e80d90..76abb769 100644 --- a/circle.yml +++ b/circle.yml @@ -27,7 +27,7 @@ jobs: - checkout - run: name: Install dependencies - command: npm install + command: npm ci - run: name: Lint code command: npm run lint @@ -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: @@ -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: @@ -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: @@ -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