mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
46b9e4803e
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.1.2 to 4.1.6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](9bb56186c3...a5ac7e51b4
) Updates `github/codeql-action` from 3.24.9 to 3.25.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](1b1aada464...2e230e8fe0
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Closes gh-5505
106 lines
3.3 KiB
YAML
106 lines
3.3 KiB
YAML
name: Node
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore: "dependabot/**"
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
build-and-test:
|
|
runs-on: ubuntu-latest
|
|
name: ${{ matrix.NPM_SCRIPT }} - ${{ matrix.NAME }} (${{ matrix.NODE_VERSION }})
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
NAME: ["Node"]
|
|
NODE_VERSION: [18.x, 20.x]
|
|
NPM_SCRIPT: ["test:browserless"]
|
|
include:
|
|
- NAME: "Node"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "lint"
|
|
- NAME: "Chrome/Firefox"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:browser"
|
|
- NAME: "Chrome"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:slim"
|
|
- NAME: "Chrome"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:no-deprecated"
|
|
- NAME: "Chrome"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:selector-native"
|
|
- NAME: "Chrome"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:esm"
|
|
- NAME: "Firefox ESR"
|
|
NODE_VERSION: "20.x"
|
|
NPM_SCRIPT: "test:firefox"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
|
|
- name: Use Node.js ${{ matrix.NODE_VERSION }}
|
|
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
|
|
with:
|
|
node-version: ${{ matrix.NODE_VERSION }}
|
|
|
|
- name: Cache
|
|
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
|
with:
|
|
path: ~/.npm
|
|
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-npm-lock-
|
|
|
|
- name: Install firefox ESR
|
|
run: |
|
|
export FIREFOX_SOURCE_URL='https://download.mozilla.org/?product=firefox-esr-latest-ssl&lang=en-US&os=linux64'
|
|
wget --no-verbose $FIREFOX_SOURCE_URL -O - | tar -jx -C ${HOME}
|
|
if: contains(matrix.NAME, 'Firefox ESR')
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Build All for Linting
|
|
run: npm run build:all
|
|
if: contains(matrix.NPM_SCRIPT, 'lint')
|
|
|
|
- name: Run tests
|
|
run: |
|
|
export PATH=${HOME}/firefox:$PATH
|
|
export FIREFOX_BIN=${HOME}/firefox/firefox
|
|
npm run ${{ matrix.NPM_SCRIPT }}
|
|
|
|
safari:
|
|
runs-on: macos-latest
|
|
env:
|
|
NODE_VERSION: 20.x
|
|
name: test:safari - Safari
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
|
|
- 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 dependencies
|
|
run: npm install
|
|
|
|
- name: Run tests
|
|
run: npm run test:safari
|