From 75d8716d7f5287fc470211fa20211f308c91314b Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 23 Apr 2024 18:21:28 +0200 Subject: [PATCH] Add canary workflow back --- .github/workflows/main.yml | 48 +++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 278e62fa..4313899f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,27 +22,27 @@ jobs: 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 + canary: + name: canary / ${{matrix.package}} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: node + - run: npm install + - run: npm run build + - uses: actions/checkout@v4 + 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