From 90b297f264634e14b869c428ae9cdbeb527ab2e9 Mon Sep 17 00:00:00 2001 From: Christian Murphy Date: Fri, 24 Dec 2021 11:22:32 -0700 Subject: [PATCH] test: remove packages iteratively --- .github/workflows/canary.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/canary.yml b/.github/workflows/canary.yml index 17b09cbd..6dc3d5e9 100644 --- a/.github/workflows/canary.yml +++ b/.github/workflows/canary.yml @@ -26,8 +26,9 @@ jobs: - name: test ${{matrix.package}} run: | npm install - npx rimraf "**/micromark" - npx rimraf "**/micromark-util-*" + for package in $(ls ../../packages); do + npx rimraf "canary/**/$package" + done npm test working-directory: canary/${{matrix.package}}