diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 00000000..0069b4fa --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,34 @@ +name: Publish Package + +on: + workflow_dispatch: + release: + types: [published] + +jobs: + publish: + name: Publish + runs-on: ubuntu-latest + steps: + - name: Checkout the repository + uses: actions/checkout@v2 + - name: Setup PNPM 7 + uses: pnpm/action-setup@v2.0.1 + with: + version: latest + - name: Setup Node 18 + uses: actions/setup-node@v2 + with: + node-version: 18 + registry-url: 'https://registry.npmjs.org/' + cache: 'pnpm' + - name: Install dependencies + run: pnpm install + - name: Compile + run: pnpm compile + - name: Run all tests + run: pnpm test + - name: Publish + run: pnpm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_ELEVATED }}