Skip to content

Commit 079f4bd

Browse files
committed
ci: up
1 parent 93982b7 commit 079f4bd

File tree

2 files changed

+11
-27
lines changed

2 files changed

+11
-27
lines changed

.github/workflows/test.yml .github/workflows/ci.yml

+9-25
Original file line numberDiff line numberDiff line change
@@ -21,34 +21,16 @@ jobs:
2121
runs-on: ubuntu-latest
2222

2323
steps:
24-
- uses: actions/checkout@v3
25-
26-
- uses: actions/setup-node@v3
27-
with:
28-
node-version: 20
29-
30-
- uses: pnpm/action-setup@v2
31-
with:
32-
version: 8.10.2
33-
run_install: false
34-
35-
- name: Get pnpm store directory
36-
id: pnpm-cache
37-
shell: bash
38-
run: |
39-
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
40-
41-
- uses: actions/cache@v3
42-
name: Setup pnpm cache
24+
- uses: actions/checkout@v4
25+
- uses: pnpm/action-setup@v4
26+
- uses: actions/setup-node@v4
4327
with:
44-
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
45-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
46-
restore-keys: |
47-
${{ runner.os }}-pnpm-store-
28+
node-version: '>=20'
29+
cache: 'pnpm'
4830

4931
- name: Cache firebase tools
5032
id: cache-firebase-tools
51-
uses: actions/cache@v3
33+
uses: actions/cache@v4
5234
env:
5335
cache-name: cache-firebase-tools
5436
with:
@@ -81,4 +63,6 @@ jobs:
8163
working-directory: ./packages/nuxt
8264
run: pnpm run build
8365

84-
- uses: codecov/codecov-action@v2
66+
- uses: codecov/codecov-action@v4
67+
with:
68+
token: ${{ secrets.CODECOV_TOKEN }}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"name": "vuefire",
33
"version": "3.1.23",
44
"description": "Official Firebase bindings for Vue.js",
5-
"packageManager": "pnpm@8.15.3",
5+
"packageManager": "pnpm@9.1.0",
66
"engines": {
77
"node": ">=18"
88
},
99
"volta": {
10-
"node": "18.16.1"
10+
"node": "20.11.1"
1111
},
1212
"type": "module",
1313
"exports": {

0 commit comments

Comments
 (0)