File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : ci
2+ on :
3+ pull_request :
4+ workflow_dispatch :
5+ push :
6+ branches :
7+ - master
8+
9+ concurrency :
10+ group : ${{ github.workflow }}-${{ github.ref }}
11+ cancel-in-progress : true
12+
13+ jobs :
14+ lint :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - uses : actions/checkout@v4
18+ - name : Actionlint
19+ uses : eifinger/actionlint-action@23c85443d840cd73bbecb9cddfc933cc21649a38 # v1.9.1
20+ - uses : actions/setup-node@v4
21+ with :
22+ node-version : " 20"
23+ - run : npm install
24+ - run : npm run all
25+ - name : Make sure no changes from linters are detected
26+ run : |
27+ git diff --exit-code || (echo "::error::Please run 'npm run all' to fix the issues" && exit 1)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3658,7 +3658,7 @@ module.exports = require("util");
36583658/******/
36593659/************************************************************************/
36603660var __webpack_exports__ = { } ;
3661- const { execFileSync } = __nccwpck_require__ ( 421 ) ;
3661+ const { execSync , execFileSync } = __nccwpck_require__ ( 421 ) ;
36623662const { keyFilePrefix } = __nccwpck_require__ ( 334 ) ;
36633663const { gitCmd, homePath, sshAgentCmd } = __nccwpck_require__ ( 644 ) ;
36643664const { alterGitConfigWithRetry } = __nccwpck_require__ ( 561 ) ;
You can’t perform that action at this time.
0 commit comments