Skip to content

chore(deps): bump fast-xml-parser from 5.9.3 to 5.10.1 #26

chore(deps): bump fast-xml-parser from 5.9.3 to 5.10.1

chore(deps): bump fast-xml-parser from 5.9.3 to 5.10.1 #26

Workflow file for this run

name: CI
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build-test:
name: Lint, build & test (Angular 18)
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Node version is pinned via .nvmrc (v22.22.3). The matrix is kept
# so additional versions can be added without restructuring the job.
node-version: ['22.22.3']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build library
run: npm run build
- name: Test
run: npm test -- --browsers=ChromeHeadlessNoSandbox