Skip to content

Commit

Permalink
Just use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
felixbrucker committed Nov 11, 2023
1 parent db4d6cf commit b3f6d6f
Show file tree
Hide file tree
Showing 5 changed files with 9,530 additions and 12,507 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ jobs:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v3
- name: Set up Node.js 16.x
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Set up Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16.x
- name: Use current yarn
run: yarn set version 3.x
- name: yarn install
run: yarn install
cache: 'pnpm'
- name: Install
run: pnpm install
- name: Deploy to gh-pages
if: github.ref == 'refs/heads/master'
run: npm run deploy
run: pnpm run deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
/dist
# Only exists if Bazel was run
/bazel-out
.yarn

# dependencies
/node_modules
Expand Down
2 changes: 0 additions & 2 deletions .yarnrc.yml

This file was deleted.

Loading

0 comments on commit b3f6d6f

Please sign in to comment.