Skip to content

chore(deps): bump actions/setup-node from 6.2.0 to 6.3.0 in the github-actions group across 1 directory #101

chore(deps): bump actions/setup-node from 6.2.0 to 6.3.0 in the github-actions group across 1 directory

chore(deps): bump actions/setup-node from 6.2.0 to 6.3.0 in the github-actions group across 1 directory #101

Workflow file for this run

name: jQuery
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
NODE_VERSION: 24.x
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Test jQuery Integration
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Install jQuery dependencies
working-directory: test/jquery
run: npm ci
- name: Install local JTR
working-directory: test/jquery
run: npm install -D ../../
- name: Run jQuery tests in JSDOM
working-directory: test/jquery
run: npm run test:jsdom -- -v
- name: Run jQuery tests
working-directory: test/jquery
run: npm run test:browser -- -v
ie:
runs-on: windows-latest
name: Test jQuery with IEDriver
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
submodules: recursive
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Install local JTR
working-directory: test/jquery
run: npm install -D ../../
- name: Run jQuery tests in Edge in IE mode
working-directory: test/jquery
run: npm run test:ie -- -v