Skip to content

Commit 55a636f

Browse files
authored
シェルスクリプトの実行に失敗したらCIも失敗するようにする (#1968)
* Add set -e * Revert "Update dependency @octokit/plugin-paginate-rest to v14 (#1910)" This reverts commit e56a7b4. * Revert "Update dependency @octokit/plugin-rest-endpoint-methods to v16.1.0 (#1861)" This reverts commit 982c54e. * npm install
1 parent 18f5523 commit 55a636f

5 files changed

Lines changed: 45 additions & 12 deletions

File tree

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"@actions/github": "6.0.1",
4-
"@octokit/plugin-paginate-rest": "14.0.0",
5-
"@octokit/plugin-rest-endpoint-methods": "17.0.0",
4+
"@octokit/plugin-paginate-rest": "13.2.1",
5+
"@octokit/plugin-rest-endpoint-methods": "16.0.0",
66
"@octokit/request-error": "7.1.0"
77
},
88
"devDependencies": {

scripts/super_linter/build/set_path.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
set -e
23

34
npm ci
45
tag_name="$(yq '.jobs.build.steps[-1].uses' .github/workflows/super-linter.yml | sed -e 's;/slim@.*;:slim;g')"

scripts/update_dist/update_dist/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
set -e
23

34
npm ci
45
tsc --noEmit
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
set -e
23

34
yq -i ".engines.node|=\"$(cat .node-version)\"" package.json
45
npm install

0 commit comments

Comments
 (0)