diff options
author | 2022-06-28 15:47:21 -0400 | |
---|---|---|
committer | 2022-06-28 15:47:21 -0400 | |
commit | 660abd3deeb3c451ce32d8d0d068ec6290e82d22 (patch) | |
tree | 9c1e58ac5f5e76aa56414d419bbd17bbaefb16f7 | |
parent | 789dc1fabc8e9a806f54603a0e6951e3e29d5155 (diff) | |
download | astro-660abd3deeb3c451ce32d8d0d068ec6290e82d22.tar.gz astro-660abd3deeb3c451ce32d8d0d068ec6290e82d22.tar.zst astro-660abd3deeb3c451ce32d8d0d068ec6290e82d22.zip |
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 <bholmesdev@gmail.com>
Diffstat (limited to '')
-rw-r--r-- | .changeset/wet-shirts-warn.md | 5 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 5 |
2 files changed, 5 insertions, 5 deletions
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. |