File tree Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Expand file tree Collapse file tree 1 file changed +0
-31
lines changed Original file line number Diff line number Diff line change 3535 cd extensions/cli
3636 npm run lint
3737
38- format-check :
39- runs-on : ubuntu-latest
40- steps :
41- - name : Checkout code
42- uses : actions/checkout@v4
43-
44- - name : Setup Node.js
45- uses : actions/setup-node@v4
46- with :
47- node-version : 20
48- cache : " npm"
49- cache-dependency-path : extensions/cli/package-lock.json
50-
51- - name : Install dependencies
52- run : |
53- cd extensions/cli
54- npm ci
55-
56- - name : Debug environment info
57- run : |
58- echo "Node.js version: $(node --version)"
59- echo "npm version: $(npm --version)"
60- echo "Prettier version: $(npx prettier --version)"
61- echo "Platform: $(uname -a)"
62-
63- - name : Check code formatting
64- run : |
65- cd extensions/cli
66- npm run format:check
67-
6838 test :
6939 strategy :
7040 matrix :
11585 runs-on : ubuntu-latest
11686 needs :
11787 - lint
118- - format-check
11988 - test
12089
12190 steps :
You can’t perform that action at this time.
0 commit comments