Skip to content

chore(deps): bump the github-actions group with 2 updates (#29) #93

chore(deps): bump the github-actions group with 2 updates (#29)

chore(deps): bump the github-actions group with 2 updates (#29) #93

name: jQuery Migrate
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
NODE_VERSION: 24.x
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Test jQuery Migrate 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@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: '**/package-lock.json'
- name: Install dependencies
run: npm ci
- name: Install jQuery Migrate dependencies
working-directory: test/jquery-migrate
run: npm ci
- name: Install local JTR
working-directory: test/jquery-migrate
run: npm install -D ../../
- name: Run jQuery Migrate tests
working-directory: test/jquery-migrate
run: npm test