We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f170066 commit 53f37f1Copy full SHA for 53f37f1
codefresh.yml
@@ -0,0 +1,30 @@
1
+version: '1.0'
2
+
3
+stages:
4
+ - clone
5
+ - build
6
+ - release
7
8
+steps:
9
+ clone:
10
+ stage: clone
11
+ type: 'git-clone'
12
+ repo: 'hoverinc/hover-javascript'
13
+ revision: '${{CF_BRANCH}}'
14
+ build:
15
+ stage: build
16
+ image: node:10.16.0-alpine
17
+ working_directory: ${{clone}}
18
+ commands:
19
+ - yarn install
20
+ test:
21
22
+ image: ${{build}}
23
24
+ - yarn validate
25
+ release:
26
+ stage: release
27
28
29
+ - yarn build
30
+ - node src travis-after-success
0 commit comments