feat(core) enabled remark-gfm enabling tables in markdown #1226
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure the EventCatalog can build OK | |
name: Verify Build | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
build: | |
name: Verify Build | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Installation | |
run: npm i | |
- name: Test | |
run: npm run test:ci | |
- name: Build | |
run: npm run verify-build:catalog |