Skip to content

Commit

Permalink
chore: remove actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ErickJ3 committed Nov 25, 2024
1 parent 06b82a3 commit a94676d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 47 deletions.
39 changes: 0 additions & 39 deletions .github/actions/ setup-node-pnpm/action.yml

This file was deleted.

28 changes: 20 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,29 @@ jobs:
runs-on: ${{ matrix.platform }}

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Node.js and pnpm
uses: ./.github/actions/setup-node-pnpm
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
pnpm-version: "8"

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- uses: pnpm/action-setup@v2
with:
version: "8"
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- uses: dtolnay/rust-toolchain@stable

- name: Install Linux dependencies
if: matrix.platform == 'ubuntu-latest'
Expand Down

0 comments on commit a94676d

Please sign in to comment.