Tests: conslidate GH actions runs; separate git & stable jQuery versions

- also add hard retries to runs
- remove legacy build on Node 10

Closes gh-2262
This commit is contained in:
Timmy Willison 2024-06-11 19:47:23 -04:00 committed by GitHub
parent ef71826041
commit e022c99d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -17,17 +17,17 @@ env:
jobs: jobs:
build-and-test: build-and-test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
name: ${{ matrix.BROWSER }} - jQuery ${{ matrix.JQUERY }} name: |
${{ matrix.BROWSER }} | ${{ matrix.JQUERYS.name }}
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
BROWSER: [chrome, firefox] BROWSER: [chrome, firefox]
JQUERY: JQUERYS:
- "git" - versions: --jquery git --jquery 3.x-git
- "3.x-git" name: jQuery git
- "3.7.1" - versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
- "2.2.4" name: jQuery stable
- "1.12.4"
steps: steps:
- name: Checkout - name: Checkout
@ -56,20 +56,23 @@ jobs:
run: npm run build run: npm run build
- name: Test - name: Test
run: npm run test:unit -- -h -b ${{ matrix.BROWSER }} --jquery ${{ matrix.JQUERY }} --retries 3 run: |
npm run test:unit -- -h -b ${{ matrix.BROWSER }} \
${{ matrix.JQUERYS.versions }} \
--retries 3 --hard-retries 1
edge: edge:
runs-on: windows-latest runs-on: windows-latest
name: edge - jQuery ${{ matrix.JQUERY }} name: |
edge | ${{ matrix.JQUERYS.name }}
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
JQUERY: JQUERYS:
- "git" - versions: --jquery git --jquery 3.x-git
- "3.x-git" name: jQuery git
- "3.7.1" - versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
- "2.2.4" name: jQuery stable
- "1.12.4"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
@ -94,20 +97,23 @@ jobs:
run: npm run build run: npm run build
- name: Test - name: Test
run: npm run test:unit -- -h -b edge --jquery ${{ matrix.JQUERY }} --retries 3 run: |
npm run test:unit -- -h -b edge `
${{ matrix.JQUERYS.versions }} `
--retries 3 --hard-retries 1
safari: safari:
runs-on: macos-latest runs-on: macos-latest
name: safari - jQuery ${{ matrix.JQUERY }} name: |
safari | ${{ matrix.JQUERYS.name }}
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
JQUERY: JQUERYS:
- "git" - versions: --jquery git --jquery 3.x-git
- "3.x-git" name: jQuery git
- "3.7.1" - versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
- "2.2.4" name: jQuery stable
- "1.12.4"
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
@ -132,32 +138,7 @@ jobs:
run: npm run build run: npm run build
- name: Test - name: Test
run: npm run test:unit -- -b safari --jquery ${{ matrix.JQUERY }} --retries 3 run: |
npm run test:unit -- -b safari \
legacy-build: ${{ matrix.JQUERYS.versions }} \
runs-on: ubuntu-latest --retries 3 --hard-retries 1
name: Build on Node 10.x
env:
NODE_VERSION: 10.x
steps:
- name: Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-
- name: Install npm dependencies
run: npm install
- name: Build
run: npm run build