File tree Expand file tree Collapse file tree 1 file changed +32
-8
lines changed
Expand file tree Collapse file tree 1 file changed +32
-8
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,41 @@ jobs:
1717 steps :
1818
1919
20- - name : Set up Node.js
21- uses : actions/setup-node@v4
20+ # - name: Set up Node.js
21+ # uses: actions/setup-node@v4
2222
23- - name : Install RelaxedJS globally
24- run : npm install -g relaxedjs
25- # - name: Install RelaxedJS locally
26- # run: npm install relaxedjs
23+ # - name: Install RelaxedJS globally
24+ # run: npm install -g relaxedjs
25+ # # - name: Install RelaxedJS locally
26+ # # run: npm install relaxedjs
2727
28- - name : find relaxedjs
28+ # - name: find relaxedjs
29+ # run: |
30+ # which relaxed
31+
32+ - name : test installed chrome
33+ run : |
34+ which chrome-browser
35+ chrome-browser --version
36+ which chrome
37+ chrome --version
38+
39+ - name : install debian chrome
40+ run : |
41+ set -ex
42+ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
43+ sudo apt install ./google-chrome-stable_current_amd64.deb
44+
45+ - name : test newly-installed chrome
46+ run : |
47+ which chrome-browser
48+ chrome-browser --version
49+ which chrome
50+ chrome --version
51+
52+ - name : quit
2953 run : |
30- which relaxed
54+ exit
3155
3256 # - name: Setup chromium
3357 # uses: browser-actions/setup-chrome@v1
You can’t perform that action at this time.
0 commit comments