This repository was archived by the owner on Mar 19, 2024. It is now read-only.
File tree 2 files changed +59
-7
lines changed
2 files changed +59
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ Test :
10
+ if : " !contains(github.event.head_commit.message, '[skip ci]')"
11
+ name : ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
12
+ runs-on : ${{ matrix.os }}
13
+ strategy :
14
+ fail-fast : false
15
+ matrix :
16
+ os :
17
+ - ubuntu-latest
18
+ - macos-latest
19
+ - windows-latest
20
+ atom_channel : [stable]
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - uses : UziTech/action-setup-atom@v1
24
+ with :
25
+ channel : ${{ matrix.atom_channel }}
26
+
27
+ - uses : actions/setup-node@v2
28
+ with :
29
+ node-version : " 12.x"
30
+
31
+ - name : Install dependencies
32
+ run : |
33
+ apm install --production
34
+ npm install --only=dev
35
+
36
+ # - name: Run tests 👩🏾💻
37
+ # run: npm run lint
38
+
39
+ Lint :
40
+ if : " !contains(github.event.head_commit.message, '[skip ci]')"
41
+ name : ${{ matrix.os }} - Atom ${{ matrix.atom_channel }}
42
+ runs-on : ${{ matrix.os }}
43
+ strategy :
44
+ fail-fast : false
45
+ matrix :
46
+ os :
47
+ - ubuntu-latest
48
+ steps :
49
+ - uses : actions/checkout@v2
50
+
51
+ - uses : actions/setup-node@v2
52
+ with :
53
+ node-version : " 12.x"
54
+
55
+ - name : Install dependencies
56
+ run : npm install
57
+
58
+ - name : Run tests 👩🏾💻
59
+ run : npm run test.lint
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments