diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2025-03-03 20:15:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-03 20:15:14 +0100 |
commit | 1da395de2e6759dfe9a7a199b03a39365e30f16c (patch) | |
tree | b597281911de6cde1682932ca9c242c0f8b5841d /.github | |
parent | 302b488b9214e14830496578f7cf0aebcc33c132 (diff) | |
download | jquery-ui-main.tar.gz jquery-ui-main.zip |
Dist files linting is limited to checking if they're proper ES5.
Closes gh-2336
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/node.js.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 6279223a3..eef7c86e7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -49,12 +49,13 @@ jobs: - name: Install npm dependencies run: npm install - - name: Lint - run: npm run lint - - name: Build run: npm run build + # Lint must happen after build as we lint generated files. + - name: Lint + run: npm run lint + - name: Test run: | npm run test:unit -- \ |