Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KuphJr committed Sep 8, 2023
1 parent a6b322a commit 2a6b03a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Run npm ci
run: npm ci --no-optional
run: npm ci --omit=optional

- name: Setup project
run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
node-version: 18

- name: Install dependencies
run: npm ci --no-optional
run: npm ci --omit=optional

- name: Run Prettier check
run: npx prettier --check .
2 changes: 1 addition & 1 deletion .github/workflows/test-converage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18

- name: Install dependencies
run: npm ci --no-optional
run: npm ci --omit=optional

- name: Setup Deno
uses: denolib/setup-deno@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18

- name: Install dependencies
run: npm ci --no-optional
run: npm ci --omit=optional

- name: Setup Deno
uses: denolib/setup-deno@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: 18

- name: Install dependencies
run: npm ci --no-optional
run: npm ci --omit=optional

- name: Setup Deno
uses: denolib/setup-deno@v2
Expand Down

0 comments on commit 2a6b03a

Please sign in to comment.