diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 53a695555d10..87d1f7686111 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -1,7 +1,6 @@ name: CLA Checking on: - workflow_dispatch: - issue_comment: + push: jobs: check-cla: diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 3b982b06af77..1f4afa18725e 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -18,12 +18,8 @@ jobs: node-version: '20' - name: npm install run: npm install - - name: lint *.js - run: npm run eslint - - name: lint *.md - run: npm run markdownlint - - name: format code - run: npm run prettier-check + - name: run cla script + run: node ./github/actions/check-for-cla/index.js coverage: runs-on: ubuntu-latest env: diff --git a/index.cjs b/index.cjs index a0dde5dee5d2..825ad31642d4 100644 --- a/index.cjs +++ b/index.cjs @@ -6,7 +6,7 @@ const path = require("path"); // If in 'production' mode, use the combined/minified/optimized version of Cesium if (process.env.NODE_ENV === "production") { // eslint-disable-next-line global-require - module.exports = require(path.join(__dirname, "Build/Cesium/index.cjs")); + // module.exports = require(path.join(__dirname, "Build/Cesium/index.cjs")); return; }