This repository has been archived by the owner on Sep 7, 2024. It is now read-only.
Releases: ludicroushq/shipzen
Releases · ludicroushq/shipzen
v0.1.10
v0.1.9
v0.1.8
v0.1.7
What's Changed
You will manually need to apply the following change to your test workflow
diff --git a/.github/workflows/_test.yml b/.github/workflows/_test.yml
index 048cb07..916aa1b 100644
--- a/.github/workflows/_test.yml
+++ b/.github/workflows/_test.yml
@@ -7,11 +7,15 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ with:
+ version: 'latest'
+
- uses: actions/setup-node@v4
with:
- node-version: lts/*
- cache: 'npm'
+ node-version: 'lts/*'
+ cache: 'pnpm'
- - run: npm ci
+ - run: pnpm install
- - run: npm run ci:test
+ - run: pnpm run ci:test
Full Changelog: v0.1.6...v0.1.7