Skip to content

Commit

Permalink
Fixed CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
gius committed Jun 12, 2023
1 parent 9935503 commit c17e77c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/validatecommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 0 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ stages:

before_script:
- yarn install
- yarn run lerna bootstrap

test:
stage: test
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.MD
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down

0 comments on commit c17e77c

Please sign in to comment.