Skip to content

Commit

Permalink
feat: add pnpm setup action to ci (#10)
Browse files Browse the repository at this point in the history
* feat: add gh wf to publish

* feat: update wf to work with pnpm

* feat: update types field in package json

* feat: add pnpm setup action
  • Loading branch information
aspnxdd authored Aug 17, 2022
1 parent 3091f04 commit 9fb2c0d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: pnpm install --frozen-lockfile
- uses: pnpm/action-setup@v2.0.1
name: Install pnpm
id: pnpm-install
with:
version: 7.1.0
run_install: |
- recursive: true
args: [--frozen-lockfile]
- run: pnpm compile
- run: pnpm publish --access=public
env:
Expand Down

0 comments on commit 9fb2c0d

Please sign in to comment.