mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-10 13:55:45 +00:00
69dd8c5b89
Allow for embark sources to be authored in TypeScript and/or JavaScript, and to make use of upcoming features of the JS language. Sources in the src/ directory are transpiled into the dist/ directory, and npm-scripts are provided to support and automate various aspect of the build process. Source map support is enabled at runtime, i.e. when invoking the embark cli and running embark's test suite.
17 lines
362 B
YAML
17 lines
362 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "8"
|
|
- nodejs_version: "10"
|
|
install:
|
|
# get the latest version of Node.js in a release series
|
|
- ps: Install-Product node $env:nodejs_version
|
|
# output useful info for debugging
|
|
- node --version
|
|
- npm --version
|
|
# install modules
|
|
- npm install
|
|
test_script:
|
|
- npm run build:node
|
|
- npm test
|
|
build: off
|