Skip to content

Commit a568766

Browse files
authored
Update OOXML-Validator to latest version (#27)
1 parent 578544c commit a568766

19 files changed

+1607
-850
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ env:
44
on:
55
push:
66
branches: [main]
7+
paths-ignore:
8+
- '**.md'
79
pull_request:
810
branches: [main]
11+
paths-ignore:
12+
- '**.md'
913
release:
1014
types:
1115
- released
@@ -15,14 +19,15 @@ jobs:
1519
strategy:
1620
matrix:
1721
os: [macos-latest, ubuntu-latest, windows-latest]
22+
node-version: [16.x, 18.x, 20.x]
1823
runs-on: ${{ matrix.os }}
1924
steps:
2025
- name: Checkout
21-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2227
- name: Install Node.js
23-
uses: actions/setup-node@v1
28+
uses: actions/setup-node@v4
2429
with:
25-
node-version: 18
30+
node-version: ${{ matrix.node-version }}
2631
- run: npm install
2732
- run: xvfb-run -a npm test
2833
if: runner.os == 'Linux'
@@ -37,10 +42,10 @@ jobs:
3742
runs-on: ubuntu-latest
3843
needs: test
3944
steps:
40-
- uses: actions/checkout@v2
41-
- uses: actions/setup-node@v1
45+
- uses: actions/checkout@v4
46+
- uses: actions/setup-node@v4
4247
with:
43-
node-version: 18
48+
node-version: 20
4449
registry-url: https://registry.npmjs.org/
4550
- name: Install the dependencies
4651
run: npm i

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [1.5.3] - 2024-01-23
9+
10+
### Updated
11+
12+
- OOXMLValidator cli
13+
- npm packages
14+
815
## [1.5.2] - 2022-12-2
16+
17+
### Fixed
918
- Fixed validation in Office 2007 (#20)
19+
20+
### Updated
1021
- Updated vulnerable dependencies
1122

1223
## [1.5.1] - 2022-10-24
24+
25+
### Updated
1326
- Updated OOXML Validator to version 2.1.1
1427

1528
## [1.5.0] - 2022-09-29
460 KB
Binary file not shown.
276 KB
Binary file not shown.
Binary file not shown.
9.13 KB
Binary file not shown.

OOXMLValidator/Newtonsoft.Json.dll

1.49 KB
Binary file not shown.

0 commit comments

Comments
 (0)