Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nnecec committed Oct 18, 2024
1 parent 205ba30 commit 6450df4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,23 @@ jobs:
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2

- name: Set node version to 16.x
uses: actions/setup-node@v3
- name: Set node versions
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: lts/*
registry-url: https://registry.npmjs.org/
cache: 'pnpm'

- name: Enable Corepack
run: corepack enable

- name: Install pnpm
uses: pnpm/action-setup@v4

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

- name: Build
run: pnpm build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"turbo": "^2.1.3",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@9.12.2",
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228",
"beachball": {
"access": "public"
}
Expand Down

0 comments on commit 6450df4

Please sign in to comment.