Skip to content

Commit bf85f46

Browse files
authored
Merge pull request #31 from denco/feature/next
feature/next
2 parents 892cffd + db82d88 commit bf85f46

File tree

17 files changed

+6122
-111
lines changed

17 files changed

+6122
-111
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Markup parsing tests
2+
3+
on:
4+
push:
5+
branches:
6+
- feature/*
7+
- fix/*
8+
- main
9+
pull_request:
10+
branches:
11+
- main
12+
jobs:
13+
test-markup-parsing:
14+
strategy:
15+
matrix:
16+
os: [macos-latest, ubuntu-latest, windows-latest]
17+
runs-on: ${{ matrix.os }}
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v2
21+
- name: Install Node.js
22+
uses: actions/setup-node@v1
23+
with:
24+
node-version: 14.x
25+
- name: Install Dependencies
26+
run: npm ci
27+
- name: Run Linting Checks
28+
run: npm run lint
29+
- name: Run Tests
30+
run: npm run test

.vscode/launch.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@
2626
"args": [
2727
"/usr/lib/code/",
2828
"--extensionDevelopmentPath=${workspaceRoot}",
29-
"${workspaceRoot}/src/test/testfiles/",
30-
],
29+
"${workspaceRoot}/src/test/testfiles/"
30+
],
3131
"stopOnEntry": false,
3232
"sourceMaps": true,
33-
"outFiles": ["${workspaceRoot}/out"],
33+
"outFiles": [
34+
"${workspaceRoot}/out"
35+
],
3436
"preLaunchTask": "npm: watch"
3537
},
3638
{

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Confluence Wiki Markup
22

3+
## [0.1.10](https://github.com/denco/vscode-confluence-markup/releases/tag/0.1.10)
4+
5+
- fix [Error by display of multiply links or escaped link markup in the same line](https://github.com/denco/vscode-confluence-markup/issues/28)
6+
- fix regex for code/noformat macro
7+
- add dev's enhansments: linting, tests, ci
8+
39
## [0.1.9](https://github.com/denco/vscode-confluence-markup/releases/tag/0.1.9)
410

511
- fix [Can't use [ and ] in string](https://github.com/denco/vscode-confluence-markup/issues/24)

0 commit comments

Comments
 (0)