We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7d190b2 + 38c886a commit a61eb5fCopy full SHA for a61eb5f
.github/workflows/nodejs.yml
@@ -32,6 +32,29 @@ jobs:
32
npm run lint
33
npm test
34
35
+ build-test-macos:
36
+ runs-on: macOS-10.14
37
+
38
+ strategy:
39
+ matrix:
40
+ node-version: [12.x]
41
42
+ steps:
43
+ - uses: actions/checkout@v1
44
+ - name: Use Node.js ${{ matrix.node-version }}
45
+ uses: actions/setup-node@v1
46
+ with:
47
+ node-version: ${{ matrix.node-version }}
48
+ - uses: actions/setup-java@v1
49
50
+ java-version: '12.0.2'
51
+ architecture: x64
52
+ - name: Build & test extension
53
+ run: |
54
+ npm ci
55
+ npm run lint
56
+ npm test
57
58
build-test-windows:
59
runs-on: windows-2019
60
0 commit comments