Merge pull request #850 from veggiemonk/fix-ghactions

Fix github action path
This commit is contained in:
Julien Bisconti 2020-04-13 18:00:52 +02:00 committed by GitHub
commit 7be832fc35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -23,8 +23,8 @@ jobs:
${{ runner.os }}-node-
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
# if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- run: npm run test
with:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -6,7 +6,7 @@ function envvar_undefined(variable_name) {
throw new Error(`${variable_name} must be defined`);
}
console.log({
DEBUG: process.env.DEBUG,
DEBUG: process.env.DEBUG || false,
});
const README = 'README.md';