diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3016315b5d34..8d0676fa0547d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,14 +24,11 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Gulp - run: npm install -g gulp-cli - - - name: Install other dependencies + - name: Install dependencies run: npm install - name: Run external tests - run: gulp externaltest + run: npx gulp externaltest - name: Run CLI unit tests - run: gulp unittestcli + run: npx gulp unittestcli diff --git a/.github/workflows/font_tests.yml b/.github/workflows/font_tests.yml index 2870806a33fd2..0399c2ded0857 100644 --- a/.github/workflows/font_tests.yml +++ b/.github/workflows/font_tests.yml @@ -45,10 +45,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Gulp - run: npm install -g gulp-cli - - - name: Install other dependencies + - name: Install dependencies run: npm install - name: Use Python 3.12 @@ -61,4 +58,4 @@ jobs: run: pip install fonttools - name: Run font tests - run: gulp fonttest --headless + run: npx gulp fonttest --headless diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 21f5597a7cc56..a24b0bad5dd07 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,14 +24,11 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Gulp - run: npm install -g gulp-cli - - - name: Install other dependencies + - name: Install dependencies run: npm install - name: Run lint - run: gulp lint + run: npx gulp lint - name: Run lint-chromium - run: gulp lint-chromium + run: npx gulp lint-chromium diff --git a/.github/workflows/publish_website.yml b/.github/workflows/publish_website.yml index c52b2aad0b4ee..086bc8f5087b7 100644 --- a/.github/workflows/publish_website.yml +++ b/.github/workflows/publish_website.yml @@ -26,14 +26,11 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Gulp - run: npm install -g gulp-cli - - - name: Install other dependencies + - name: Install dependencies run: npm install - name: Build the website - run: gulp web + run: npx gulp web - name: Archive the website shell: sh diff --git a/.github/workflows/types_tests.yml b/.github/workflows/types_tests.yml index 463b703546806..98e96242ff58f 100644 --- a/.github/workflows/types_tests.yml +++ b/.github/workflows/types_tests.yml @@ -24,11 +24,8 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Install Gulp - run: npm install -g gulp-cli - - - name: Install other dependencies + - name: Install dependencies run: npm install - name: Run types tests - run: gulp typestest + run: npx gulp typestest