Skip to content

Commit

Permalink
Correcting npm command
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul0216 committed Nov 20, 2024
1 parent d1023fd commit d4e3048
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documents-link-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v4
- run: npm install -g npm@6.14.15;which npm;npm -v
- name: npm install
run: npm
run: npm install
- name: Documents link locale validation
run: npm run tsc && node .script/documentsLinkValidator.js
2 changes: 1 addition & 1 deletion .github/workflows/json-syntax-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
- uses: actions/checkout@v4
- run: npm install -g npm@6.14.15;which npm;npm -v
- name: npm install
run: npm
run: npm install
- name: Json File Syntax Validation
run: npm run tsc && node .script/jsonFileValidator.js
2 changes: 1 addition & 1 deletion .github/workflows/yaml-syntax-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- run: npm install -g npm@6.14.15;which npm;npm -v
- name: npm install
run: npm
run: npm install
- name: YAML File Syntax Validation
run: npm run tsc && node .script/yamlFileValidator.js

0 comments on commit d4e3048

Please sign in to comment.