We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad29cb8 commit de2dedbCopy full SHA for de2dedb
1 file changed
.github/workflows/CI.yml
@@ -21,9 +21,12 @@ jobs:
21
- uses: UziTech/action-setup-atom@v1
22
with:
23
channel: ${{ matrix.atom_channel }}
24
+
25
- name: Install APM dependencies
- run: |
26
- apm install
+ run: apm install
27
28
+ - name: Tests
29
+ run: npm run test
30
31
Lint:
32
if: "!contains(github.event.head_commit.message, '[skip ci]')"
@@ -47,16 +50,15 @@ jobs:
47
50
run: npm run test.lint
48
51
49
52
Release:
- needs: [Test]
53
+ needs: [Test, Lint]
54
if: github.ref == 'refs/heads/master' &&
55
github.event.repository.fork == false
56
runs-on: ubuntu-latest
57
steps:
58
- uses: actions/checkout@v2
59
- - uses: actions/setup-node@v1
- with:
- node-version: "14.x"
60
+ - uses: actions/setup-node@v2
61
62
- name: NPM install
63
run: npm install
64
0 commit comments