diff --git a/.github/workflows/publish_pkgpr.yml b/.github/workflows/publish_pkgpr.yml new file mode 100644 index 0000000..1e0538d --- /dev/null +++ b/.github/workflows/publish_pkgpr.yml @@ -0,0 +1,24 @@ +name: Publish to pkg.pr.new +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - run: corepack enable + - uses: actions/setup-node@v4 + with: + node-version: 20 + cache: "npm" + + - name: Install dependencies + run: npm install + + - name: Build + run: npm run build + + - run: npx pkg-pr-new publish \ No newline at end of file