File tree Expand file tree Collapse file tree 3 files changed +35
-52
lines changed Expand file tree Collapse file tree 3 files changed +35
-52
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ branches :
8
+ - ' **'
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-18.04
12
+ env :
13
+ MONGODB_VERSION : 3.6.9
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+ - name : Use Node.js
17
+ uses : actions/setup-node@v1
18
+ with :
19
+ node-version : ' 10.14'
20
+ - name : Cache Node.js modules
21
+ uses : actions/cache@v2
22
+ with :
23
+ path : ~/.npm
24
+ key : v1-npm-deps-${{ hashFiles('**/package-lock.json') }}
25
+ restore-keys : v1-npm-deps-
26
+ - run : npm ci
27
+ - run : npm install -g mongodb-runner
28
+ - run : mongodb-runner start
29
+ - run : npm run lint
30
+ - run : npm test -- --maxWorkers=4
31
+ - run : npm run integration
32
+ env :
33
+ CI : true
34
+ - run : bash <(curl -s https://codecov.io/bash)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 12
12
<a href="https://twitter.com/intent/follow?screen_name=parseplatform"><img alt="Follow on Twitter" src="https://img.shields.io/twitter/follow/parseplatform?style=social&label=Follow"></a>
13
13
<a href="https://community.parseplatform.org/"><img alt="Join the conversation" src="https://img.shields.io/discourse/https/community.parseplatform.org/topics.svg"></a>
14
14
<a href="https://github.com/parse-community/Parse-SDK-JS/blob/master/LICENSE"><img alt="License" src="https://img.shields.io/badge/license-BSD-lightgrey.svg"></a>
15
- <a href=" https://travis-ci.org /parse-community/Parse-SDK-JS"><img alt="Build status" src="https://travis-ci.org /parse-community/Parse-SDK-JS.svg?branch=master"></a>
15
+ <a href="https://github.com /parse-community/Parse-SDK-JS/actions?query=workflow%3Aci+branch%3Amaster "><img alt="Build status" src="https://github.com /parse-community/Parse-SDK-JS/workflows/ci/badge .svg?branch=master"></a>
16
16
<a href="#backers"><img alt="Backers on Open Collective" src="https://opencollective.com/parse-server/backers/badge.svg" /></a>
17
17
<a href =" #sponsors " ><img alt =" Sponsors on Open Collective " src =" https://opencollective.com/parse-server/sponsors/badge.svg " /></a >
18
18
</p >
You can’t perform that action at this time.
0 commit comments