File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,22 @@ jobs:
1818 - name : ' ☁️ checkout repository'
1919 uses : actions/checkout@v4
2020
21+ - name : ' 📦 Setup pnpm'
22+ uses : pnpm/action-setup@v4
23+
2124 - name : ' 🔧 Setup Node.js'
2225 uses : actions/setup-node@v4
2326 with :
2427 node-version : ' 20'
2528
2629 - name : ' 📦 install dependencies'
27- run : npm ci
30+ run : pnpm install --frozen-lockfile
2831
2932 - name : ' ✅ run ESLint'
30- run : npm run lint:eslint
33+ run : pnpm run lint:eslint
3134
3235 - name : ' ✅ run Prettier'
33- run : npm run lint:prettier
36+ run : pnpm run lint:prettier
3437
3538 build-project :
3639 name : Build and test project
@@ -61,16 +64,19 @@ jobs:
6164 - name : ' ☁️ checkout repository'
6265 uses : actions/checkout@v4
6366
67+ - name : ' 📦 Setup pnpm'
68+ uses : pnpm/action-setup@v4
69+
6470 - name : ' 🔧 Setup Node.js'
6571 uses : actions/setup-node@v4
6672 with :
6773 node-version : ' 20'
6874
6975 - name : ' 📦 install dependencies'
70- run : npm ci
76+ run : pnpm install --frozen-lockfile
7177
7278 - name : ' 📂 build'
73- run : npm run build
79+ run : pnpm run build
7480
7581 - name : ' ✅ run API tests'
76- run : npm run test:api
82+ run : pnpm run test:api
You can’t perform that action at this time.
0 commit comments