diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14fa3f30..6d3c395e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Install Node uses: actions/setup-node@v2 with: - node-version: '10' + node-version: '16' - name: Ensure migrations are up-to-date run: python manage.py makemigrations --check @@ -30,9 +30,8 @@ jobs: - name: Ensure JS and CSS are up-to-date run: | npm install - npx grunt sass:dist - npx grunt postcss:dist npx grunt uglify:scripts + npm run build git diff --exit-code static/ - name: Run tests