* Update ngrx to v4 * package.json files * release: Remove zadic references from release script * fix(user-config): Fix user-config loading * build: Lock package dependencies * build: fix app version * ci: remove build:test step * fix(user-config): Revert switch-keymap-action modifications * test(user-config): xit keystroke-action test * fix(user-config): Fix user config loading * fix(user-config): Fix user config loading
32 lines
519 B
YAML
32 lines
519 B
YAML
os: unstable
|
|
|
|
environment:
|
|
GH_TOKEN:
|
|
secure: 3IebpEKmC39codi1wT6dXx8mql4/mCL1JzZ7lir7GQ5MWRnCxlED2OXbiKHHigDV
|
|
matrix:
|
|
- nodejs_version: "8"
|
|
|
|
cache:
|
|
- node_modules -> package.json
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
build: off
|
|
|
|
shallow_clone: true
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- set CI=true
|
|
- set PATH=%APPDATA%\npm;%PATH%
|
|
- node -v
|
|
- npm -v
|
|
- appveyor-retry npm install
|
|
|
|
test_script:
|
|
- appveyor-retry npm run build
|
|
- npm run lint
|
|
- npm run test
|
|
- npm run release
|