Skip to content

Commit

Permalink
chore: migrate to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosdevpereira committed Oct 8, 2022
1 parent 996fa22 commit 999b20f
Show file tree
Hide file tree
Showing 4 changed files with 959 additions and 2,664 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,30 @@ on:
jobs:
publish:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16]

steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}

- name: Setup Node
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.2
with:
version: 7

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Build Action
run: npm ci && npm run build
run: pnpm install && pnpm build

- uses: JasonEtco/build-and-tag-action@v2
env:
Expand Down
Loading

0 comments on commit 999b20f

Please sign in to comment.