Skip to content

11.0.4

11.0.4 #164

Workflow file for this run

name: main
on:
- pull_request
- push
jobs:
main:
name: ${{matrix.node}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}
- run: npm install
- run: npm test
- uses: codecov/codecov-action@v3
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
node:
- lts/gallium
- node
# canary:
# name: canary / ${{matrix.package}}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: node
# - run: npm install
# - run: npm run build
# - uses: actions/checkout@v3
# with:
# repository: ${{matrix.package}}
# path: canary/${{matrix.package}}
# - run: npm install && npx rimraf "node_modules/**/unified" && npm test
# working-directory: canary/${{matrix.package}}
# strategy:
# fail-fast: false
# matrix:
# package:
# - rehypejs/rehype
# - remarkjs/remark
# - retextjs/retext
# - unifiedjs/unified-engine