-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
78 lines (67 loc) · 2.28 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
################################################################################
# #
# db db .8888. dP 888888b 8888ba .8888. d8b db 888888b d8888P #
# 88 88 d8' `8b 88 88 88 `8b d8' `8b 88V8 88 88 88 #
# Y8 8P 88 88 88 a88aaa 88aa8P' 88 88 88 V8 88 88aaa 88 #
# `8b d8' 88 88 88 88 88 `8b 88 88 88 V888 88 88 #
# `8bd8' Y8. .8P 88 88 88 .88 Y8. .8P dP 88 V88 88 88 #
# YP `888P' 88888P 888888P 888888' `888P' 88 VP 8P 888888P dP #
# #
################################################################################
#
# Password generator for Atom
#
# Copyright (C) 2016-2020 Volebo <[email protected]>
# Copyright (C) 2016-2020 Maksim Koryukov <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the MIT License, attached to this software package.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# You should have received a copy of the MIT License along with this
# program. If not, see <https://opensource.org/licenses/MIT>.
#
# http://spdx.org/licenses/MIT
#
################################################################################
sudo: false
language: generic
cache:
directories:
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- fakeroot
- git
- libsecret-1-dev
env:
global:
- APM_TEST_PACKAGES="atom-mocha-test-runner"
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
os:
- linux
- osx
dist: trusty
### Generic setup follows ###
script:
- npm install
- npm run lint
# https://github.com/maxkoryukov/atom-password-generator/issues/5
# TODO: I am too stupid for writing Atom tests
- curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh
- "${ATOM_SCRIPT_PATH}" --test ./lib/**/*.test.js
branches:
only:
- master
git:
depth: 10