Skip to content

Commit ef68f56

Browse files
authored
Merge pull request #79 from darkriszty/feature/update-dependencies
Update devDependencies and dockerfile
2 parents 3523a95 + 446f8cf commit ef68f56

10 files changed

Lines changed: 3022 additions & 6644 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ ubuntu-latest, macos-latest, windows-latest ]
16-
node-version: [ '14.x', '16.x' ]
16+
node-version: [ '20.x', '22.x' ]
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v2
20+
uses: actions/checkout@v4
2121
- name: Use Node.js ${{ matrix.node-version }}
22-
uses: actions/setup-node@v1
22+
uses: actions/setup-node@v4
2323
with:
2424
node-version: ${{ matrix.node-version }}
2525

@@ -28,4 +28,4 @@ jobs:
2828
- run: xvfb-run -a npm test
2929
if: runner.os == 'Linux'
3030
- run: npm test
31-
if: runner.os != 'Linux'
31+
if: runner.os != 'Linux'

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"echo": false,
3333
"focus": false
3434
},
35-
"command": "npm run compile --loglevel silent && gulp copy-systemTest-resources"
35+
"command": "npm run compile --loglevel silent && npx gulp copy-systemTest-resources"
3636
}
3737
]
3838
}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14-alpine AS builder
1+
FROM node:22-alpine AS builder
22

33
WORKDIR /tmp
44

@@ -12,7 +12,7 @@ COPY src/ src/
1212
RUN npm run compile
1313

1414

15-
FROM node:14-alpine
15+
FROM node:22-alpine
1616

1717
WORKDIR /app
1818

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Markdown table prettifier
22

3-
[![Test Status](https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/workflows/Tests/badge.svg)](https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/actions)
3+
[![Test Status](https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/darkriszty/MarkdownTablePrettify-VSCodeExt/actions)
44
[![Visual Studio Code extension](https://img.shields.io/visual-studio-marketplace/v/darkriszty.markdown-table-prettify?color=success&label=VSCode)](https://marketplace.visualstudio.com/items?itemName=darkriszty.markdown-table-prettify)
55
[![OVSX](https://img.shields.io/open-vsx/v/darkriszty/markdown-table-prettify?color=success&label=Open%20VSX)](https://open-vsx.org/extension/darkriszty/markdown-table-prettify)
66
[![Docker image](https://img.shields.io/docker/v/darkriszty/prettify-md?color=success&label=Docker)](https://hub.docker.com/r/darkriszty/prettify-md/tags?page=1&ordering=last_updated)

0 commit comments

Comments
 (0)