Skip to content

Commit b316baa

Browse files
committed
Merge remote-tracking branch 'origin/main' into henrymercer/one-click-debug
2 parents e655fb3 + 688508d commit b316baa

59 files changed

Lines changed: 291 additions & 987 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/pr-checks.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,18 @@ jobs:
9090
needs: [check-js, check-node-modules]
9191
strategy:
9292
matrix:
93-
os: [ubuntu-latest, macos-latest]
93+
os: [ubuntu-latest, macos-latest, windows-latest]
9494
runs-on: ${{ matrix.os }}
9595
timeout-minutes: 45
9696

9797
steps:
9898
- uses: actions/checkout@v3
99-
- name: npm run-script test
100-
run: npm run-script test
99+
- name: npm test
100+
run: |
101+
# Run any commands referenced in package.json using Bash, otherwise
102+
# we won't be able to find them on Windows.
103+
npm config set script-shell bash
104+
npm test
101105
102106
runner-analyze-javascript-ubuntu:
103107
name: Runner ubuntu JS analyze

.github/workflows/script/check-js.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ npm run-script build
1414
# Check that repo is still clean
1515
if [ ! -z "$(git status --porcelain)" ]; then
1616
# If we get a fail here then the PR needs attention
17-
>&2 echo "Failed: JavaScript files are not up to date. Run 'npm run-script build' to update"
17+
>&2 echo "Failed: JavaScript files are not up to date. Run 'rm -rf lib && npm run-script build' to update"
1818
git status
1919
exit 1
2020
fi
21-
echo "Success: JavaScript files are up to date"
21+
echo "Success: JavaScript files are up to date"

lib/actions-util.js

Lines changed: 1 addition & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.js

Lines changed: 2 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.test.js

Lines changed: 21 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.test.js

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)