Skip to content

Instantly share code, notes, and snippets.

@alessbell
Last active September 18, 2019 16:29
Show Gist options
  • Save alessbell/3ef5cc0c361bebd4df271f2a261e9b3c to your computer and use it in GitHub Desktop.
Save alessbell/3ef5cc0c361bebd4df271f2a261e9b3c to your computer and use it in GitHub Desktop.
version: 2.1
orbs:
cypress: cypress-io/cypress@1
slack: circleci/slack@3.3.0
workflows:
run_cypress:
triggers:
- schedule:
cron: "30 11 * * *"
filters:
branches:
only:
- master
jobs:
- cypress/run:
no-workspace: true
store_artifacts: false
pre-steps:
- run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
command: |
npx cypress run
post-steps:
- slack/status:
fail_only: true
only_for_branches: master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment