Skip to content

Commit 2bfe749

Browse files
Merge pull request #5 from heppokofrontend/deploy
Create
2 parents 9e5acf9 + f38de7e commit 2bfe749

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
on:
2+
workflow_dispatch:
23
push:
34
branches:
45
- main
56
- feature/*
67
- release/*
8+
paths:
9+
- '**.ts'
10+
- '**.json'
11+
- '**.yml'
712
pull_request:
813
paths:
914
- '!*.md'

.github/workflows/demodeploy.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: DEMO DEPLOY
2+
on: [workflow_dispatch]
3+
jobs:
4+
test:
5+
strategy:
6+
matrix:
7+
# platform: [ windows-latest, macOS-latest ]
8+
platform: [ubuntu-latest]
9+
node: ['16']
10+
name: Code check on Node.${{ matrix.node }}/${{ matrix.platform }}
11+
runs-on: ${{ matrix.platform }}
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-node@v2
15+
with:
16+
node-version: '16'
17+
- run: npm ci
18+
- run: npm run deploy:demo
19+
- uses: paambaati/codeclimate-action@v2.7.5
20+
env:
21+
CC_TEST_REPORTER_ID: af882de8052c9e436d8e7980bec9c61773f9a9e8cf327b27e97832bfa9628f11
22+
with:
23+
coverageLocations: |
24+
${{github.workspace}}/coverage/lcov.info:lcov

src/class/HTMLCodeBlockElement.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ export type EndgineProps = {
55
language: string;
66
};
77
};
8+
89
export type EndgineFunction = (props: EndgineProps) => {
910
markup: string;
1011
};

0 commit comments

Comments
 (0)