8000 fix: upgrade pnpm version to match lockfile by ayoubqrt · Pull Request #14 · astahmer/partyrpc · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: upgrade pnpm version to match lockfile #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

8000
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 18.x
- name: Setup Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 22.x

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
version: 10

- name: Install dependencies
run: pnpm install --frozen-lockfile
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Pull request check

on:
pull_request:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Pull request check
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 22.x
uses: actions/setup-node@v3
with:
node-version: 22.x

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 10

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

- name: Build
run: pnpm build

- name: Test
run: pnpm test
0