diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7e8d827..709cb06 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,17 +20,20 @@ jobs: always-auth: true registry-url: 'https://registry.npmjs.org' - - name: ๐Ÿ“ฅ Download deps - run: yarn + - uses: pnpm/action-setup@v2 + name: ๐Ÿ“ฅ Download deps + with: + version: 8 + run_install: true - name: ๐Ÿงช Test - run: yarn test + run: pnpm test env: AWS_ACCESS_KEY_ID: 'test' AWS_SECRET_ACCESS_KEY: 'test' - name: ๐Ÿ— Build - run: yarn build + run: pnpm build - name: ๐Ÿ“ข Publish run: npm publish diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 02fc519..331917f 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -19,11 +19,14 @@ jobs: with: node-version: '16.x' - - name: ๐Ÿ“ฅ Download deps - run: yarn + - uses: pnpm/action-setup@v2 + name: ๐Ÿ“ฅ Download deps + with: + version: 8 + run_install: true - name: ๐Ÿงช Test - run: yarn test + run: pnpm test env: AWS_ACCESS_KEY_ID: 'test' AWS_SECRET_ACCESS_KEY: 'test' @@ -44,10 +47,10 @@ jobs: node-version: '16.x' - name: ๐Ÿ“ฅ Download deps - run: yarn + run: pnpm - name: ๐Ÿ— Build - run: yarn build + run: pnpm build prettier: name: ๐Ÿชž Prettier @@ -65,10 +68,10 @@ jobs: node-version: '16.x' - name: ๐Ÿ“ฅ Download deps - run: yarn + run: pnpm - name: ๐Ÿ— Prettier - run: yarn prettier + run: pnpm prettier bump: name: โฌ†๏ธ Bump Version diff --git a/README.md b/README.md index dac32f5..2a9a788 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Simple DynamoDB client written in TypeScript. Install the package ```bash -yarn add duenamodb +pnpm install duenamodb ``` ```bash