File tree 12 files changed +31
-0
lines changed
chrome-devtools-frontend-next
12 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 30
30
31
31
- name : Test
32
32
run : npm test
33
+
34
+ - name : Check scripts are executable
35
+ run : |
36
+ for i in userTests/*/*.sh; do
37
+ if ! [[ -x "$i" ]]; then
38
+ echo "File $i is not executable"
39
+ exit 1
40
+ fi
41
+ done
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
npm i -g yarn --force
2
4
rm -rf angular
3
5
git clone --depth 1 https://github.com./angular/angular angular
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
set -x
2
4
3
5
npm i -g pnpm
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
set -x
2
4
npm install -g @microsoft/rush
3
5
rm -rf azure-sdk
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
rm -rf depot_tools
2
4
git clone --depth 1 https://chromium.googlesource.com/chromium/tools/depot_tools.git depot_tools
3
5
PATH=depot_tools:$PATH
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
npm i -g yarn
2
4
rm -rf office-ui-fabric
3
5
CI=true
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
npm i -g yarn
2
4
rm -rf prettier
3
5
git clone --depth 1 https://github.com./prettier/prettier.git prettier
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
rm -rf pyright
2
4
git clone --depth 1 https://github.com./microsoft/pyright.git pyright
3
5
START=$( pwd)
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
rm -rf rxjs
2
4
git clone --depth 1 https://github.com./ReactiveX/rxjs rxjs
3
5
START=$( pwd)
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
set -x
2
4
3
5
npm i -g yarn
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
rm -rf vscode
2
4
git clone --depth 1 https://github.com./microsoft/vscode.git vscode
3
5
START=$( pwd)
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
1
3
npm install -g pnpm
2
4
rm -rf vue-next
3
5
git clone --depth 1 https://github.com./vuejs/core
You can’t perform that action at this time.
0 commit comments