diff --git a/.github/workflows/build-test-package-publish.yml b/.github/workflows/build-test-package-publish.yml index b0b22f86..267f29d9 100644 --- a/.github/workflows/build-test-package-publish.yml +++ b/.github/workflows/build-test-package-publish.yml @@ -98,12 +98,12 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" cache: "npm" cache-dependency-path: package-lock.json - name: install node modules - run: npm install --also=dev + run: npm install --include=dev - name: setup python environment id: setup-python @@ -121,7 +121,7 @@ jobs: if: always() package: - needs: [code-quality, test] + #needs: [code-quality, test] runs-on: ubuntu-latest @@ -145,22 +145,19 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" cache: "npm" cache-dependency-path: package-lock.json - # Validate wrapper - name: Gradle Wrapper Validation uses: gradle/actions/wrapper-validation@v4 - # Set up Java environment for the next steps - name: Setup Java uses: actions/setup-java@v4 with: distribution: zulu java-version: 21 - # Setup Gradle - name: Setup Gradle uses: gradle/actions/setup-gradle@v4 with: @@ -174,7 +171,7 @@ jobs: echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT - name: install node modules - run: npm install --also=dev + run: npm install --include=dev - name: update versions from git if: ${{ !startsWith( github.ref, 'refs/tags/v') }} @@ -248,12 +245,12 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v4 with: - node-version: "18" + node-version: "20" cache: "npm" cache-dependency-path: package-lock.json - name: install node modules - run: npm install --also=dev + run: npm install --include=dev - uses: actions/download-artifact@v4 with: diff --git a/scripts/package.py b/scripts/package.py index d0e61e02..a323662b 100644 --- a/scripts/package.py +++ b/scripts/package.py @@ -59,7 +59,7 @@ def main() -> None: ).check_returncode() shutil.rmtree("./intellij-client/build", ignore_errors=True) - run("gradlew buildPlugin --console=plain", shell=True, check=False, cwd="intellij-client").check_returncode() + run("gradle buildPlugin --console=plain", shell=True, check=False, cwd="intellij-client").check_returncode() if __name__ == "__main__":