forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
31 lines (31 loc) · 875 Bytes
/
circle.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
version: 2
jobs:
build:
docker:
- image: cypress/base:12
working_directory: ~/cypress-cucumber-preprocessor
steps:
- checkout
- run:
name: npm install
command: npm install
- run:
name: link the package
command: |
npm link
npm link cypress-cucumber-preprocessor
- run:
name: run tests
command: npm test
- run:
name: slow test run, for sanity
command: npm run test:each
- run:
name: Run on cypress-cucumber-example
command: bash ./.scripts/runOnExample.bash
- run:
name: Run on cypress-cucumber-webpack-typescript-example
command: bash ./.scripts/runOnWebpackTypescriptExample.bash
- run:
name: release
command: npm run semantic-release || true