This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The Atom build-package.sh script only checks `devDependencies` for linters to run, as ESLint is only listed in our direct `dependencies` now we need to trigger linting manually. Includes: * Minor update to the addon APT packages for Travis CI. * Structure of the Circle CI script is updated to match that of atom/ci. * Installing Noide.js on AppVeyor to run ESLint.
- Loading branch information
1 parent
72deab9
commit 0e60de5
Showing
3 changed files
with
20 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
test: | ||
dependencies: | ||
override: | ||
- curl -s https://raw.githubusercontent.com/Arcanemagus/ci/atomlinter/build-package.sh | sh | ||
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh | ||
- chmod u+x build-package.sh | ||
|
||
dependencies: | ||
test: | ||
override: | ||
- echo "Managed in the script" | ||
- ./build-package.sh | ||
# The Atom CI script doesn't support having ESLint as a direct dependency, | ||
# as such it doesn't run linting automatically for us. | ||
- npm run lint |