Skip to content
This repository was archived by the owner on Mar 5, 2022. It is now read-only.

Commit c274025

Browse files
committed
add cirlce
1 parent dc5d983 commit c274025

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

circle.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
orbs:
3+
cypress: cypress-io/cypress@1
4+
workflows:
5+
build:
6+
jobs:
7+
- cypress/install:
8+
name: Install 📦
9+
build: npm run transpile
10+
post-steps:
11+
- run:
12+
name: Show info 📺
13+
command: npx cypress info
14+
- run:
15+
name: Linting code 🧹
16+
command: npm run lint
17+
18+
- cypress/run:
19+
name: Test 🧪
20+
requires:
21+
- Install 📦
22+
install-command: echo 'Nothing to install in this job'
23+
no-workspace: true
24+
record: false

0 commit comments

Comments
 (0)