From 660abd3deeb3c451ce32d8d0d068ec6290e82d22 Mon Sep 17 00:00:00 2001 From: Ben Holmes Date: Tue, 28 Jun 2022 15:47:21 -0400 Subject: [PATCH] Chore: remove memory test from CI (#3758) * chore: remove memory test * chore: remove memory test from ci * chore: changeset * Revert "chore: remove memory test" This reverts commit 31b97c9df9cd3d38881ce807f9b84bfc9dc82976. * chore: update changeset to say "CI only" Co-authored-by: bholmesdev --- .changeset/wet-shirts-warn.md | 5 +++++ .github/workflows/ci.yml | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .changeset/wet-shirts-warn.md diff --git a/.changeset/wet-shirts-warn.md b/.changeset/wet-shirts-warn.md new file mode 100644 index 000000000..e0ac87d13 --- /dev/null +++ b/.changeset/wet-shirts-warn.md @@ -0,0 +1,5 @@ +--- +'astro-scripts': patch +--- + +Chore: remove memory test from CI workflow. This causes issues with Vite 3 dependency resolution, and is no longer necessary for testing our compiler. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e316ca1c..404473e7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -230,11 +230,6 @@ jobs: - name: Test run: pnpm run test:smoke - - name: Memory Leak Test - run: | - node ./scripts/memory/mk.js - node --expose-gc ./scripts/memory/index.js --ci - # Changelog can only run _after_ build. # We download all `dist/` artifacts from GitHub to skip the build process.