Add rehype-mdx-import-media
to list of plugins
#1331
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
name: main | |
on: | |
- pull_request | |
- push | |
jobs: | |
small: | |
name: test / ${{matrix.os}} / ${{matrix.node}} | |
runs-on: ${{matrix.os}} | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{matrix.node}} | |
cache: npm | |
- run: npm ci | |
- run: npm run test-api | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- windows-latest | |
node: | |
- node | |
include: | |
- os: ubuntu-latest | |
node: lts/gallium | |
full: | |
name: full build | |
runs-on: ubuntu-latest | |
env: | |
PUPPETEER_SKIP_DOWNLOAD: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: node | |
cache: npm | |
- run: npm ci | |
- run: npm test | |
- uses: codecov/codecov-action@v4 |