Skip to content

Commit c17e77c

Browse files
committed
Fixed CI configuration
1 parent 9935503 commit c17e77c

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.github/workflows/npmpublish.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
1818
restore-keys: ${{ runner.os }}-yarn-
1919

20-
- name: Use Node.js 16.x
20+
- name: Use Node.js 18.x
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 16.x
23+
node-version: 18.x
2424
registry-url: https://registry.npmjs.org/
2525

2626
- uses: little-core-labs/[email protected]
@@ -30,7 +30,6 @@ jobs:
3030
tagRegexGroup: 1
3131

3232
- run: yarn install
33-
- run: yarn run lerna bootstrap
3433
- run: yarn run build
3534
- run: yarn test
3635
- run: yarn run lint

.github/workflows/validatecommit.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ jobs:
2121
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
2222
restore-keys: ${{ runner.os }}-yarn-
2323

24-
- name: Use Node.js 16.x
24+
- name: Use Node.js 18.x
2525
uses: actions/setup-node@v3
2626
with:
27-
node-version: 16.x
27+
node-version: 18.x
2828
registry-url: https://registry.npmjs.org/
2929

3030
- run: yarn install
31-
- run: yarn run lerna bootstrap
3231
- run: yarn run build
3332
- run: yarn test
3433
- run: yarn run lint

.gitlab-ci.yml

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ stages:
1212

1313
before_script:
1414
- yarn install
15-
- yarn run lerna bootstrap
1615

1716
test:
1817
stage: test

CONTRIBUTING.MD

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ You need Node.js and Yarn installed locally and run
3636

3737
```
3838
yarn install
39-
yarn lerna bootstrap --force-local
4039
```
4140

4241
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!

0 commit comments

Comments
 (0)