Browse Source

ci: enable electron security checks

Unset the `ELECTRON_DISABLE_SECURITY_WARNINGS` environment variable
which was being used to disable the security checks when testing the app
on ci. This is no longer needed now that we have a more strict Content
Security Policy when the app runs in production mode.

See https://github.com/LN-Zap/zap-desktop/pull/456
renovate/lint-staged-8.x
Tom Kirkpatrick 7 years ago
parent
commit
9cd7a79348
No known key found for this signature in database GPG Key ID: 72203A8EC5967EA8
  1. 1
      .travis.yml
  2. 1
      appveyor.yml

1
.travis.yml

@ -5,7 +5,6 @@ language: node_js
env: env:
global: global:
- DEBUG=electron-builder - DEBUG=electron-builder
- ELECTRON_DISABLE_SECURITY_WARNINGS=true
matrix: matrix:
- TEST=lint-ci - TEST=lint-ci
- TEST=test-ci - TEST=test-ci

1
appveyor.yml

@ -1,7 +1,6 @@
os: unstable os: unstable
environment: environment:
ELECTRON_DISABLE_SECURITY_WARNINGS: true
matrix: matrix:
- nodejs_version: 10 - nodejs_version: 10
- nodejs_version: 8 - nodejs_version: 8

Loading…
Cancel
Save