This repository was archived by the owner on Oct 1, 2024. It is now read-only.
File tree 1 file changed +19
-14
lines changed
1 file changed +19
-14
lines changed Original file line number Diff line number Diff line change 20
20
steps :
21
21
- name : Checkout
22
22
uses : actions/checkout@v2
23
- - uses : actions/setup-node@v1
24
- with :
25
- node-version : 11.x
23
+ - name : Get Node
24
+ uses : actions/setup-node@v1
25
+ with :
26
+ node-version : 11.x
26
27
- name : linux setup
27
28
if : ${{ matrix.os == 'ubuntu-latest' }}
28
29
run : |
@@ -38,19 +39,23 @@ jobs:
38
39
- name : macos setup
39
40
if : ${{ matrix.os == 'macos-latest' }}
40
41
run : |
41
- / usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
42
+ usr/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh )"
42
43
brew install arduino --cask
43
- - run : |
44
- npm install -g node-gyp
45
- npm install -g vsce
46
- npm install -g gulp
47
- npm install -g
48
- npm install
49
- gulp tslint
50
- gulp genAikey
51
- vsce package
44
+ - name : preinstall
45
+ run : |
46
+ npm install -g node-gyp
47
+ npm install -g vsce
48
+ npm install -g gulp
49
+ npm install -g typescript
50
+ - name : install
51
+ run : npm install
52
+ - name : scripts
53
+ run : |
54
+ gulp tslint
55
+ gulp genAikey
56
+ vsce package
52
57
- name : run tests
53
- if : ${{ matrix.os == 'ubuntu-latest' || 'macos-latest'}}
58
+ if : ${{ matrix.os == 'ubuntu-latest' }} || ${{ matrix.os == 'macos-latest' }}
54
59
uses : GabrielBB/xvfb-action@v1
55
60
with :
56
61
run : npm test --silent
You can’t perform that action at this time.
0 commit comments