Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ jobs:
- name: Install dependencies
uses: ./.github/actions/dependencies

- name: Build Dist
run: pnpm run build

- name: Run Tests
run: pnpm --filter=@hcaptcha-react/lib run test:unit
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Install dependencies
uses: ./.github/actions/dependencies

- name: Build Dist
run: pnpm run build

- name: Run Tests
run: pnpm --filter=@hcaptcha-react/lib run test:unit

Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hcaptcha/react-hcaptcha",
"description": "A React library for hCaptcha",
"version": "2.0.0",
"version": "2.0.1",
"author": "hCaptcha team and contributors",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -41,9 +41,8 @@
"!**/*.tsbuildinfo"
],
"scripts": {
"setup": "pnpm install --prefer-offline",
"setup": "pnpm install --prefer-offline && pnpm --filter=@hcaptcha-react/lib run compile:build",
"start": "concurrently 'pnpm --filter=@hcaptcha-react/lib run compile:watch' 'pnpm --filter=@hcaptcha-react/demo run start'",
"postinstall": "pnpm --filter=@hcaptcha-react/lib run compile:build",
"build": "pnpm --filter=@hcaptcha-react/lib run compile:build",
"test": "pnpm --filter=@hcaptcha-react/lib run test:unit"
},
Expand Down
Loading
Loading