Skip to content

try something

try something #18

Workflow file for this run

name: Publish package on NPM
on: push
jobs:
repro1:
runs-on: ubuntu-latest
steps:
- name: Reproduction
uses: actions/github-script@v7
with:
script: |
await core.summary
.addBreak()
.addCodeBlock(`<!-- some html comment -->**Hello**`, 'markdown')
.write()
fix-example:
runs-on: ubuntu-latest
steps:
- name: Fix example
uses: actions/github-script@v7
with:
script: |
await core.summary
.addBreak()
.addCodeBlock(`**Hello**`, 'markdown')
.write()
test:
runs-on: ubuntu-latest
steps:
- name: Fix example
uses: actions/github-script@v7
with:
script: |
await core.summary
.addCodeBlock(`**Hello**`, 'markdown')
.write()