Skip to content
This repository was archived by the owner on Jun 23, 2026. It is now read-only.

Commit 7a9e20a

Browse files
authored
Update check.yml
1 parent af58e6b commit 7a9e20a

1 file changed

Lines changed: 6 additions & 11 deletions

File tree

.github/workflows/check.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@ jobs:
1313
defaults:
1414
run:
1515
working-directory: encryptx-backend
16-
1716
steps:
1817
- uses: actions/checkout@v4
19-
2018
- name: Install Rust
2119
uses: dtolnay/rust-toolchain@stable
2220
with:
2321
components: clippy
24-
2522
- name: Run Clippy
2623
run: cargo clippy --all-targets --all-features -- -D warnings
2724

@@ -31,17 +28,15 @@ jobs:
3128
defaults:
3229
run:
3330
working-directory: encryptx-frontend
34-
3531
steps:
3632
- uses: actions/checkout@v4
37-
3833
- name: Setup Node.js
3934
uses: actions/setup-node@v4
40-
with:
41-
node-version: 18
42-
35+
with:
36+
node-version: 22
37+
- name: Install pnpm
38+
run: npm install -g pnpm
4339
- name: Install dependencies
44-
run: npm ci
45-
40+
run: pnpm install --frozen-lockfile
4641
- name: Run ESLint
47-
run: npm run lint
42+
run: pnpm lint

0 commit comments

Comments
 (0)