Skip to content

Commit 6dfae5f

Browse files
committed
ci: remove lockfile dependency
1 parent e6aa9ab commit 6dfae5f

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,9 @@ jobs:
2525
uses: actions/setup-node@v4
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
cache: 'npm'
2928

3029
- name: Install dependencies
31-
run: npm ci
30+
run: npm install
3231

3332
- name: Run linter
3433
run: npm run lint
@@ -68,10 +67,9 @@ jobs:
6867
uses: actions/setup-node@v4
6968
with:
7069
node-version: '20.x'
71-
cache: 'npm'
7270

7371
- name: Install dependencies
74-
run: npm ci
72+
run: npm install
7573

7674
- name: Build package
7775
run: npm run build
@@ -96,10 +94,9 @@ jobs:
9694
uses: actions/setup-node@v4
9795
with:
9896
node-version: '20.x'
99-
cache: 'npm'
10097

10198
- name: Install dependencies
102-
run: npm ci
99+
run: npm install
103100

104101
- name: Generate API docs
105102
run: npm run docs
@@ -126,10 +123,9 @@ jobs:
126123
with:
127124
node-version: '20.x'
128125
registry-url: 'https://registry.npmjs.org'
129-
cache: 'npm'
130126

131127
- name: Install dependencies
132-
run: npm ci
128+
run: npm install
133129

134130
- name: Build package
135131
run: npm run build

0 commit comments

Comments
 (0)