This commit addresses occasional pipeline failures caused by transient network errors during dependency installation with `npm ci`. It centralizes the logic for installing npm dependencies and introduces a retry mechanism. The new approach will attempt `npm ci` up to 5 times with a 5-second interval between each attempt, thereby increasing the resilience of CI/CD pipelines. This commit adds a new script `npm-install.js` with `npm run install-deps` command to centralize npm dependency installation process throughout the project. Separate testing of scripts to a separate workflow. It removes unused `install` dependency from `package.json`.
56 lines
1.5 KiB
YAML
56 lines
1.5 KiB
YAML
name: checks.scripts
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
icons-build:
|
|
runs-on: ${{ matrix.os }}-latest
|
|
strategy:
|
|
matrix:
|
|
os: [ macos, ubuntu, windows ]
|
|
fail-fast: false # Still interested to see results from other combinations
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
-
|
|
name: Install dependencies
|
|
uses: ./.github/actions/npm-install-dependencies
|
|
-
|
|
name: Create icons
|
|
run: npm run icons:build
|
|
|
|
install-deps:
|
|
runs-on: ${{ matrix.os }}-latest
|
|
strategy:
|
|
matrix:
|
|
install-deps-before: [true, false]
|
|
install-command:
|
|
- npm run install-deps
|
|
- npm run install-deps -- --no-errors
|
|
- npm run install-deps -- --ci
|
|
- npm run install-deps -- --fresh --non-deterministic
|
|
- npm run install-deps -- --fresh
|
|
- npm run install-deps -- --non-deterministic
|
|
os: [ macos, ubuntu, windows ]
|
|
fail-fast: false # Still interested to see results from other combinations
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Setup node
|
|
uses: ./.github/actions/setup-node
|
|
-
|
|
name: Install dependencies
|
|
if: matrix.install-deps-before == true
|
|
uses: ./.github/actions/npm-install-dependencies
|
|
-
|
|
name: Run install-deps
|
|
run: ${{ matrix.install-command }}
|