Skip to content

Commit 1ade97d

Browse files
committed
LITE-29719 remove not needed script
1 parent 1dfe07c commit 1ade97d

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node }}
2626
- name: Install dependencies
27-
run: npm install
27+
run: npm ci
2828
- name: Lint
2929
run: npm run lint
3030
- name: Check formatting with Prettier
31-
run: npm prettier:check:ci
31+
run: npm run format:check
3232
- name: Testing
3333
run: npm test
3434
sonar:
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
node-version: 20
4545
- name: Install dependencies
46-
run: npm install
46+
run: npm ci
4747
- name: Testing
4848
run: npm test
4949
- uses: SonarSource/sonarcloud-github-action@master

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
node-version: 20
1919
- name: Install dependencies
20-
run: npm install
20+
run: npm ci
2121
- name: Build
2222
run: npm run build
2323
- name: Testing

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
---
99

10-
Build your Connect Extension UI easily with our UI Toolkit. Feel free to use any frontend library
10+
Build your Connect Extension UI easily with our UI Toolkit. Feel free to use any frontend library
1111
or framework you prefer!
1212

1313
## Installation

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
"lint:fix": "npm run lint -- --fix",
1616
"format": "prettier --write . --ignore-path .gitignore",
1717
"format:check": "prettier --check . --ignore-path .gitignore",
18-
"prettier:check:ci": "prettier --check . --ignore-path .gitignore",
1918
"test": "jest --config ./jest.config.js",
2019
"storybook": "storybook dev -p 6006",
2120
"build-storybook": "storybook build"

0 commit comments

Comments
 (0)