Skip to content

Commit

Permalink
Update parse-doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
kzrnm committed Feb 13, 2024
1 parent 32ccecb commit 03c7e1e
Show file tree
Hide file tree
Showing 11 changed files with 29,220 additions and 16,352 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test-parse-doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,38 @@ on:
workflow_dispatch:

jobs:
npm-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./parse-doxygen

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v4
with:
node-version-file: parse-doxygen/.node-version
cache-dependency-path: parse-doxygen/package-lock.json

- name: Install Dependencies
id: npm-ci
run: npm ci

- name: Check Format
id: npm-format-check
run: npm run format:check

- name: Lint
id: npm-lint
run: npm run lint

- name: Test
id: npm-ci-test
run: npm run ci-test
test:
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion parse-doxygen/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"project": "./tsconfig.json"
"project":["./tsconfig.json", "./tsconfig.test.json"]
},
"rules": {
"i18n-text/no-en": "off",
Expand Down
1 change: 1 addition & 0 deletions parse-doxygen/.node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20.6.0
2 changes: 1 addition & 1 deletion parse-doxygen/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ inputs:
description: Specifies the working directory where the command is run.
required: false
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
Loading

0 comments on commit 03c7e1e

Please sign in to comment.