diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 109c578..f78b7a5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,12 @@ jobs: name: Test on push if: ${{ github.event_name == 'push' }} runs-on: ubuntu-22.04 + permissions: + checks: read + statuses: write + contents: write + packages: write + id-token: write steps: - name: Checkout uses: actions/checkout@v4 diff --git a/package.json b/package.json index c7f2145..37af0ad 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "types": "./src/main/js/index.d.ts", "type": "module", "bin": { - "zx-extra": "./src/main/js/cli.mjs" + "zx-extra": "src/main/js/cli.mjs" }, "scripts": { "test": "PATH=$(env -i bash -c 'echo $PATH') node ./src/main/js/cli.mjs ./src/test/js/test.mjs --quiet",