Skip to content

All: upgrade jQuery to 3.7.1 in demos #27

All: upgrade jQuery to 3.7.1 in demos

All: upgrade jQuery to 3.7.1 in demos #27

Workflow file for this run

# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- name: Install xmllint
run: sudo apt-get install -y libxml2-utils
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test