Skip to content

Commit 773bef4

Browse files
authored
chore: pnpm update, fix ci (#27)
* chore: pnpm update * chore: pnpm update * chore: update ci * chore: add pnpm explicitly * chore: revert ci * chore: update ci * chore: update ci
1 parent 34db8c3 commit 773bef4

File tree

3 files changed

+576
-482
lines changed

3 files changed

+576
-482
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,29 @@ jobs:
1818
with:
1919
fetch-depth: 2
2020

21+
- name: Setup Node.js
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: '18'
25+
2126
- name: Install pnpm
27+
uses: pnpm/action-setup@v2
28+
with:
29+
version: '10.5.2'
30+
run_install: false
31+
32+
- name: Get pnpm store directory
33+
shell: bash
2234
run: |
23-
corepack enable
24-
corepack prepare pnpm@latest --activate
35+
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
36+
37+
- name: Setup pnpm cache
38+
uses: actions/cache@v3
39+
with:
40+
path: ${{ env.STORE_PATH }}
41+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42+
restore-keys: |
43+
${{ runner.os }}-pnpm-store-
2544
2645
- name: Install dependencies
2746
run: pnpm install

package.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,42 @@
1212
},
1313
"dependencies": {
1414
"@radix-ui/react-icons": "^1.3.2",
15-
"@tailwindcss/typography": "^0.5.9",
15+
"@tailwindcss/typography": "^0.5.16",
1616
"@tanstack/react-form": "^0.0.11",
1717
"@types/gsap": "^3.0.0",
1818
"@types/node": "18.11.9",
1919
"@types/react": "18.0.25",
2020
"@types/react-dom": "18.0.8",
21-
"eslint": "^8.2.0",
22-
"eslint-config-next": "^13.1.6",
23-
"firebase": "^9.17.2",
24-
"gsap": "^3.11.4",
25-
"next": "^13.1.6",
21+
"eslint": "^8.57.1",
22+
"eslint-config-next": "^13.5.8",
23+
"firebase": "^9.23.0",
24+
"gsap": "^3.12.7",
25+
"next": "^13.5.8",
2626
"next-seo": "^5.15.0",
27-
"react": "^18.2.0",
28-
"react-dom": "^18.2.0",
27+
"react": "^18.3.1",
28+
"react-dom": "^18.3.1",
2929
"react-firebase-hooks": "^5.1.1",
30-
"react-markdown": "^8.0.5",
31-
"react-parallax-tilt": "^1.7.158",
30+
"react-markdown": "^8.0.7",
31+
"react-parallax-tilt": "^1.7.285",
3232
"remark-gfm": "^3.0.1",
3333
"sharp": "^0.31.3",
3434
"sonner": "^0.6.2",
3535
"typescript": "4.8.4",
36-
"zustand": "^4.4.4"
36+
"zustand": "^4.5.6"
3737
},
3838
"devDependencies": {
39-
"@typescript-eslint/parser": "^5.42.1",
40-
"autoprefixer": "^10.4.13",
39+
"@typescript-eslint/parser": "^5.62.0",
40+
"autoprefixer": "^10.4.20",
4141
"eslint-config-airbnb": "19.0.4",
42-
"eslint-config-prettier": "^8.5.0",
43-
"eslint-plugin-import": "^2.25.3",
44-
"eslint-plugin-jsx-a11y": "^6.5.1",
45-
"eslint-plugin-react": "^7.28.0",
46-
"eslint-plugin-react-hooks": "^4.3.0",
47-
"postcss": "^8.4.19",
48-
"prettier": "^2.7.1",
42+
"eslint-config-prettier": "^8.10.0",
43+
"eslint-plugin-import": "^2.31.0",
44+
"eslint-plugin-jsx-a11y": "^6.10.2",
45+
"eslint-plugin-react": "^7.37.4",
46+
"eslint-plugin-react-hooks": "^4.6.2",
47+
"postcss": "^8.5.3",
48+
"prettier": "^2.8.8",
4949
"prettier-plugin-tailwindcss": "^0.1.13",
50-
"tailwindcss": "^3.2.4"
51-
}
50+
"tailwindcss": "^3.4.17"
51+
},
52+
"packageManager": "pnpm@10.5.2+sha512.da9dc28cd3ff40d0592188235ab25d3202add8a207afbedc682220e4a0029ffbff4562102b9e6e46b4e3f9e8bd53e6d05de48544b0c57d4b0179e22c76d1199b"
5253
}

0 commit comments

Comments
 (0)