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

Commit

Permalink
fix: use simple word for generic object value
Browse files Browse the repository at this point in the history
  • Loading branch information
batrdn committed Feb 29, 2024
1 parent 755b338 commit 56a0c9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,13 @@ jobs:
git config --local user.name "${{ github.actor }}"
git config --local user.email "${{ github.actor }}@users.noreply.github.com"
- name: Release packages
run: npx nx release -y
run: npx nx release --skip-publish
env:
GH_TOKEN: ${{ github.token }}
- name: Push tags
run: git push --follow-tags
- name: Publish packages
run: npx nx release publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_CONFIG_PROVENANCE: true
4 changes: 2 additions & 2 deletions packages/core/src/faker/faker-factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ export class FakerFactory {
const key = faker.word.sample({
strategy: 'shortest',
});
obj[key] = faker.string.sample();
obj[key] = faker.word.sample();
return obj;
},
{}
{},
);
}
}

0 comments on commit 56a0c9e

Please sign in to comment.