Skip to content

chore(deps): bump fast-xml-parser from 5.3.6 to 5.4.1 #2323

chore(deps): bump fast-xml-parser from 5.3.6 to 5.4.1

chore(deps): bump fast-xml-parser from 5.3.6 to 5.4.1 #2323

Workflow file for this run

name: Test successful build of ol-util
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- name: Checkout sources 🔰
uses: actions/checkout@v4
- name: Setup Node.js 🧮 in version ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules 💾
uses: actions/cache@v4
with:
path: ~/.npm
key: "${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}"
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies ⏬
run: npm ci
- name: Run tests 🩺
run: npm run check
- name: Build artifacts 🏗️
run: npm run build