mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
21 lines
339 B
YAML
21 lines
339 B
YAML
environment:
|
|
global:
|
|
SLS_IGNORE_WARNING: "*"
|
|
matrix:
|
|
- NODEJS_VERSION: "4"
|
|
- NODEJS_VERSION: "6"
|
|
|
|
install:
|
|
# Get the version of Node.js
|
|
- ps: Install-Product node $Env:NODEJS_VERSION
|
|
# install modules
|
|
- npm install
|
|
- node --version
|
|
- npm --version
|
|
|
|
test_script:
|
|
- npm test
|
|
|
|
# Don't actually build.
|
|
build: off
|