Skip to content

Commit

Permalink
actions
Browse files Browse the repository at this point in the history
  • Loading branch information
davay42 committed Jul 12, 2024
1 parent b083832 commit f9bbc64
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@ jobs:
NPM_CONFIG_PROVENANCE: true
steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/

- name: Setup pnpm
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: 7.27
run_install: |
- recursive: true
version: 9

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build gun-es
run: cd gun-es && npm i && npm run build
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ jobs:
name: Install pnpm
id: pnpm-install
with:
version: 7.27
run_install: |
- recursive: true
version: 9

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-latest'
Expand Down

0 comments on commit f9bbc64

Please sign in to comment.