Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

v0.1.7

Compare
Choose a tag to compare
@nahtnam nahtnam released this 24 Jun 08:55
· 3 commits to main since this release
9c38e0b

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