Skip to content

Commit 3d018da

Browse files
committed
Merge branch 'dev'
2 parents 74499da + e80132f commit 3d018da

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/development.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)