Skip to content
This repository was archived by the owner on Jun 9, 2022. It is now read-only.

Commit 10a7098

Browse files
authored
fix: add semantic release
1 parent 6ad250c commit 10a7098

File tree

4 files changed

+10092
-277
lines changed

4 files changed

+10092
-277
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
spec/fixtures

.travis.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
### Project specific config ###
21
language: generic
32

43
env:
54
global:
6-
- APM_TEST_PACKAGES=""
7-
- ATOM_LINT_WITH_BUNDLED_NODE="true"
85
- CI="true"
96

107
matrix:
@@ -15,14 +12,19 @@ os:
1512
- linux
1613
- osx
1714

18-
dist: trusty
19-
20-
### Generic setup follows ###
2115
script:
2216
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
2317
- chmod u+x build-package.sh
2418
- ./build-package.sh
2519

20+
jobs:
21+
include:
22+
- stage: lint ✨
23+
script: npm i && npm run lint
24+
25+
- stage: release 🎉
26+
script: npm i && npm run semantic-release
27+
2628
notifications:
2729
email:
2830
on_success: never
@@ -31,19 +33,18 @@ notifications:
3133
branches:
3234
only:
3335
- master
34-
- /^greenkeeper/.*$/
3536

3637
git:
3738
depth: 10
3839

3940
sudo: false
4041

42+
dist: trusty
43+
4144
addons:
4245
apt:
43-
sources:
44-
- ubuntu-toolchain-r-test
4546
packages:
46-
- g++-6
47+
- build-essential
4748
- fakeroot
4849
- git
4950
- libsecret-1-dev

0 commit comments

Comments
 (0)