mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
* Make `node --harmony bin/cake test` pass on Node 9 Make classMaker() explicitly return an object * Update Travis and AppVeyor to use --harmony and v9
21 lines
366 B
YAML
21 lines
366 B
YAML
language: node_js
|
|
|
|
node_js:
|
|
- 6
|
|
- 8
|
|
- 9
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
script:
|
|
- node ./bin/cake build:except-parser
|
|
- node ./bin/cake build:parser
|
|
- node ./bin/cake build:full
|
|
- node ./bin/cake build:browser
|
|
- node ./bin/cake test
|
|
- node --harmony ./bin/cake test
|
|
- node ./bin/cake test:browser
|
|
- node ./bin/cake test:integrations
|