Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .circleci/config.yml #149

Merged
merged 3 commits into from
May 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add .circleci/config.yml
  • Loading branch information
cowboyd committed May 12, 2021
commit 7315cd424048c488e40b73b54c1061baed713c03
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1
# Use a package of configuration called an orb.
jobs:
# Name the workflow "welcome"
test-javascript:
docker:
- image: silex/emacs:27-ci-cask
steps:
- checkout
- run:
command: cask install
working_directory: ~/project/packages/javascript

- run:
command: cask exec buttercup
working_directory: ~/project/packages/javascript
workflows:
test:
jobs:
- test-javascript