Skip to content

Commit

Permalink
ci: remove yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
luismeyer committed Jan 27, 2024
1 parent 516d762 commit 1983029
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: 📥 Download deps
run: yarn
run: pnpm install

- 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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
node-version: '16.x'

- name: 📥 Download deps
run: yarn
run: pnpm install

- name: 🧪 Test
run: yarn test
run: pnpm test
env:
AWS_ACCESS_KEY_ID: 'test'
AWS_SECRET_ACCESS_KEY: 'test'
Expand All @@ -44,10 +44,10 @@ jobs:
node-version: '16.x'

- name: 📥 Download deps
run: yarn
run: pnpm

- name: 🏗 Build
run: yarn build
run: pnpm build

prettier:
name: 🪞 Prettier
Expand All @@ -65,10 +65,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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Simple DynamoDB client written in TypeScript.
Install the package

```bash
yarn add duenamodb
pnpm install duenamodb
```

```bash
Expand Down

0 comments on commit 1983029

Please sign in to comment.