From 01b5fe420dba8dc90d763c19b608f0f23352f99d Mon Sep 17 00:00:00 2001 From: Quentin Decaunes Date: Mon, 3 Jun 2019 14:15:22 +0200 Subject: [PATCH] Ensure only project file are tested. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3e3a1b4..e679e07 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,7 @@ js_syntax: tags: [ docker ] before_script: - npm install -g acorn + - rm -rf node_modules script: - find . -iname "*.js" -print0 | xargs -0 -I % sh -c 'echo "%"; acorn --ecma6 --silent "%"'