From c17e77c7246207827d09d34cadbb54b07ebbd82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Augustin=20=C5=A0ulc?= Date: Mon, 12 Jun 2023 15:59:33 +0200 Subject: [PATCH] Fixed CI configuration --- .github/workflows/npmpublish.yml | 5 ++--- .github/workflows/validatecommit.yml | 5 ++--- .gitlab-ci.yml | 1 - CONTRIBUTING.MD | 1 - 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 9cfd6075..5d87d851 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -17,10 +17,10 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: ${{ runner.os }}-yarn- - - name: Use Node.js 16.x + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x registry-url: https://registry.npmjs.org/ - uses: little-core-labs/get-git-tag@v3.0.1 @@ -30,7 +30,6 @@ jobs: tagRegexGroup: 1 - run: yarn install - - run: yarn run lerna bootstrap - run: yarn run build - run: yarn test - run: yarn run lint diff --git a/.github/workflows/validatecommit.yml b/.github/workflows/validatecommit.yml index 91398a3b..116cf492 100644 --- a/.github/workflows/validatecommit.yml +++ b/.github/workflows/validatecommit.yml @@ -21,14 +21,13 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: ${{ runner.os }}-yarn- - - name: Use Node.js 16.x + - name: Use Node.js 18.x uses: actions/setup-node@v3 with: - node-version: 16.x + node-version: 18.x registry-url: https://registry.npmjs.org/ - run: yarn install - - run: yarn run lerna bootstrap - run: yarn run build - run: yarn test - run: yarn run lint diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b4a599be..d3993237 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,6 @@ stages: before_script: - yarn install - - yarn run lerna bootstrap test: stage: test diff --git a/CONTRIBUTING.MD b/CONTRIBUTING.MD index 3c4ac26d..ac710374 100644 --- a/CONTRIBUTING.MD +++ b/CONTRIBUTING.MD @@ -36,7 +36,6 @@ You need Node.js and Yarn installed locally and run ``` yarn install -yarn lerna bootstrap --force-local ``` You can then check the environment with `yarn validate`, and if there are no errors, you should be good to go. You are now ready to contribute!