mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
eab06ed31d
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 4.1.7 to 4.2.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](692973e3d9...d632683dd7
) Updates `actions/setup-node` from 4.0.3 to 4.0.4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](1e60f620b9...0a44ba7841
) Closes gh-2299 --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
145 lines
4.1 KiB
YAML
145 lines
4.1 KiB
YAML
name: Node
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore: "dependabot/**"
|
|
# Once a week every Monday
|
|
schedule:
|
|
- cron: "42 1 * * 1"
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
NODE_VERSION: 20.x
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: ubuntu-latest
|
|
name: |
|
|
${{ matrix.BROWSER }} | ${{ matrix.JQUERYS.name }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
BROWSER: [chrome, firefox]
|
|
JQUERYS:
|
|
- versions: --jquery git --jquery 3.x-git
|
|
name: jQuery git
|
|
- versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
|
|
name: jQuery stable
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
|
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: Lint
|
|
run: npm run lint
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Test
|
|
run: |
|
|
npm run test:unit -- -h -b ${{ matrix.BROWSER }} \
|
|
${{ matrix.JQUERYS.versions }} \
|
|
--retries 3 --hard-retries 1
|
|
|
|
edge:
|
|
runs-on: windows-latest
|
|
name: |
|
|
edge | ${{ matrix.JQUERYS.name }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
JQUERYS:
|
|
- versions: --jquery git --jquery 3.x-git
|
|
name: jQuery git
|
|
- versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
|
|
name: jQuery stable
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
|
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 dependencies
|
|
run: npm install
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Test
|
|
run: |
|
|
npm run test:unit -- -h -b edge `
|
|
${{ matrix.JQUERYS.versions }} `
|
|
--retries 3 --hard-retries 1
|
|
|
|
safari:
|
|
runs-on: macos-latest
|
|
name: |
|
|
safari | ${{ matrix.JQUERYS.name }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
JQUERYS:
|
|
- versions: --jquery git --jquery 3.x-git
|
|
name: jQuery git
|
|
- versions: --jquery 3.7.1 --jquery 3.6.4 --jquery 2.2.4 --jquery 1.12.4
|
|
name: jQuery stable
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Use Node.js ${{ env.NODE_VERSION }}
|
|
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
|
|
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 dependencies
|
|
run: npm install
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Test
|
|
run: |
|
|
npm run test:unit -- -b safari \
|
|
${{ matrix.JQUERYS.versions }} \
|
|
--retries 3 --hard-retries 1
|