Skip to content

Commit

Permalink
chore: github action pnpm-lock creation and deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Ramos committed Jul 3, 2024
1 parent 29500fb commit 7981ed8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create pnpm-lock.yaml
run: |
echo "node-version: 20" > pnpm-lock.yaml
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
Expand All @@ -26,6 +29,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Delete pnpm-lock.yaml
run: |
rm -f pnpm-lock.yaml
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
Expand Down
Empty file removed pnpm-lock.yaml
Empty file.

0 comments on commit 7981ed8

Please sign in to comment.