forked from JayS0S/kontra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (49 loc) · 1.19 KB
/
.travis.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: node_js
node_js:
- '14'
dist: xenial
sudo: required
addons:
chrome: stable
jobs:
include:
- name: Unit Tests
if: type = pull_request
script:
- npm test
after_success: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- name: Typescript Tests
if: type = pull_request
script:
- npm run build
- npm run test:ts
- name: 'Permutation Tests: vector'
if: type = pull_request
script:
- npm run build
- npm run test:permutations vector
- name: 'Permutation Tests: gameObject'
if: type = pull_request
script:
- npm run build
- npm run test:permutations gameObject
- name: 'Permutation Tests: text'
if: type = pull_request
script:
- npm run build
- npm run test:permutations text
- name: 'Permutation Tests: tileEngine'
if: type = pull_request
script:
- npm run build
- npm run test:permutations tileEngine
- name: 'Permutation Tests: updatable'
if: type = pull_request
script:
- npm run build
- npm run test:permutations updatable
- name: 'Permutation Tests: sprite'
if: type = pull_request
script:
- npm run build
- npm run test:permutations sprite