diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d0e82b1..25dac3c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,7 +26,7 @@ jobs: - name: Create Release Pull Request or Publish to npm uses: changesets/action@v1 with: - publish: npm release + publish: npm run release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 6c83e88..b259119 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: - run: npm ci - name: Test the package - run: npm test + run: npm run test - name: Compile the package - run: npm compile + run: npm run compile