First development of the deploy action (#6)
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Some checks failed
Lint / pre-commit Linting (push) Has been cancelled
Deploy js code to an instance of screeps. Some debugging tools are implemented. Reviewed-on: #6 Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de> Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
This commit is contained in:
40
node_modules/prebuild-install/appveyor.yml
generated
vendored
Normal file
40
node_modules/prebuild-install/appveyor.yml
generated
vendored
Normal file
@ -0,0 +1,40 @@
|
||||
# http://www.appveyor.com/docs/appveyor-yml
|
||||
|
||||
# Don't actually build
|
||||
build: off
|
||||
|
||||
# Skip tag builds
|
||||
skip_tags: true
|
||||
|
||||
# Set build version format
|
||||
version: "{build}"
|
||||
|
||||
# Set up build environment
|
||||
environment:
|
||||
# Test against these versions of Node.js
|
||||
matrix:
|
||||
- nodejs_version: "10"
|
||||
- nodejs_version: "9"
|
||||
- nodejs_version: "8"
|
||||
- nodejs_version: "6"
|
||||
- nodejs_version: "4"
|
||||
|
||||
# Build on both platforms
|
||||
platform:
|
||||
- x86
|
||||
- x64
|
||||
|
||||
# Install scripts (runs after repo cloning)
|
||||
install:
|
||||
# Get the latest version of $env:nodejs_version
|
||||
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform
|
||||
# Output useful info for debugging
|
||||
- node --version
|
||||
- npm --version
|
||||
# Install modules
|
||||
- npm install
|
||||
|
||||
# Post-install test scripts
|
||||
test_script:
|
||||
# Run module tests
|
||||
- npm test
|
Reference in New Issue
Block a user