Skip to content

Commit

Permalink
ci: force install of optional packages
Browse files Browse the repository at this point in the history
  • Loading branch information
immortal-tofu committed Jul 5, 2024
1 parent 372a417 commit 0bc0e5e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: cp .env.example .env
- run: npm ci
- run: npm ci --include=optional
- name: "npm CI test"
run: |
# sometimes not created and is not tailed
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: 'write'
id-token: "write"
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20.x
- run: cp .env.example .env
- run: npm ci
- run: npm ci --include=optional
- run: npm run compile
- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publishprerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
publish:
runs-on: ubuntu-latest
permissions:
id-token: 'write'
id-token: "write"
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20.x
- run: cp .env.example .env
- run: npm ci
- run: npm ci --include=optional
- run: npm run compile
- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: cp .env.example .env
- run: npm ci
- run: npm ci --include=optional
- run: npm run prettier:check
- name: "npm CI test"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testmock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: cp .env.example .env
- run: npm ci
- run: npm ci --include=optional
- name: "npm CI test"
run: |
# sometimes not created and is not tailed
Expand Down

0 comments on commit 0bc0e5e

Please sign in to comment.