Skip to content

Commit 5ce5aa9

Browse files
Merge pull request #75 from take-cheeze/mainte
Dependabot alerts対応
2 parents 5205ba2 + d68b712 commit 5ce5aa9

File tree

7 files changed

+7063
-11013
lines changed

7 files changed

+7063
-11013
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
name: Node.js CI
5+
6+
on:
7+
push:
8+
branches: [ "master" ]
9+
pull_request:
10+
branches: [ "master" ]
11+
workflow_dispatch: {}
12+
13+
jobs:
14+
build:
15+
16+
runs-on: ubuntu-latest
17+
18+
strategy:
19+
matrix:
20+
node-version: [22.x]
21+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
- name: Use Node.js ${{ matrix.node-version }}
26+
uses: actions/setup-node@v4
27+
with:
28+
node-version: ${{ matrix.node-version }}
29+
cache: 'npm'
30+
- run: npm ci
31+
- run: npm run build
32+
# - run: npm test

js/crsearch/kunai-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import IType from './index-type'
2-
import Marked from 'marked'
2+
import { Marked } from 'marked'
33

44
const MarkedOpts = {
55
gfm: true,

0 commit comments

Comments
 (0)