From 9d0e6f0c302efed6d892d27c460e0a142eba59b9 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 24 Aug 2021 06:40:00 -0700 Subject: [PATCH] Exclude node_modules from CI build --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6e94933ed..d3f379c7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: python netbox/manage.py collectstatic --no-input - name: Check PEP8 compliance - run: pycodestyle --ignore=W504,E501 netbox/ + run: pycodestyle --ignore=W504,E501 --exclude=node_modules netbox/ - name: Check UI ESLint, TypeScript, and Prettier Compliance run: yarn --cwd netbox/project-static validate