Skip to content

Commit 7d90be0

Browse files
committed
fix ci
1 parent 2a6b03a commit 7d90be0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
registry-url: 'https://registry.npmjs.org'
2828

2929
- name: Run npm ci
30-
run: npm ci --omit=optional
30+
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency --no-optional
3131

3232
- name: Setup project
3333
run: npm run build

.github/workflows/prettier.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
node-version: 18
1818

1919
- name: Install dependencies
20-
run: npm ci --omit=optional
20+
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency --no-optional
2121

2222
- name: Run Prettier check
2323
run: npx prettier --check .

.github/workflows/test-converage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: 18
2020

2121
- name: Install dependencies
22-
run: npm ci --omit=optional
22+
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency --no-optional
2323

2424
- name: Setup Deno
2525
uses: denolib/setup-deno@v2

.github/workflows/test-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: 18
2020

2121
- name: Install dependencies
22-
run: npm ci --omit=optional
22+
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency --no-optional
2323

2424
- name: Setup Deno
2525
uses: denolib/setup-deno@v2

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: 18
2020

2121
- name: Install dependencies
22-
run: npm ci --omit=optional
22+
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency
2323

2424
- name: Setup Deno
2525
uses: denolib/setup-deno@v2

0 commit comments

Comments
 (0)