mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2026-04-21 20:49:28 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d3bd05bd6e | |||
| a100e88166 |
@@ -27,5 +27,16 @@ jobs:
|
|||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: npm ci
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: npm run build
|
||||||
|
|
||||||
|
- name: Check dist/ is up-to-date
|
||||||
|
run: |
|
||||||
|
if ! git diff --exit-code dist/ || [ -n "$(git status --porcelain dist/)" ]; then
|
||||||
|
echo "::error::dist/ is out of date. Run 'npm run build' and commit the changes."
|
||||||
|
git status --short dist/
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: npm test
|
run: npm test
|
||||||
|
|||||||
Reference in New Issue
Block a user