-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b3bdef
commit e940886
Showing
3 changed files
with
22 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' | ||
version: 2.1 | ||
|
||
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. | ||
# See: https://circleci.com/docs/orb-intro/ | ||
orbs: | ||
node: circleci/[email protected] | ||
|
||
# Invoke jobs via workflows | ||
# See: https://circleci.com/docs/configuration-reference/#workflows | ||
workflows: | ||
lint: | ||
jobs: | ||
- node/run: | ||
npm-run: lint | ||
test-ci: | ||
jobs: | ||
- node/run: | ||
npm-run: test-ci |
This file was deleted.
Oops, something went wrong.
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