Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bump-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

- name: Install packages
run: |
npm ci
npm ci --ignore-scripts --omit=optional

- name: Bump repo versions
if: ${{ inputs.newVersion != '' }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:

- name: Install extension dependencies
working-directory: extension-repo
run: npm ci
run: npm ci --ignore-scripts --omit=optional

- name: Install core dependencies
working-directory: paranext-core
run: npm ci --ignore-scripts
run: npm ci --ignore-scripts --omit=optional

- name: Run format checking
working-directory: extension-repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Install packages
run: |
npm ci
npm ci --ignore-scripts

- name: Install core packages
working-directory: paranext-core
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:

- name: Install extension dependencies
working-directory: extension-repo
run: npm ci
run: npm ci --ignore-scripts --omit=optional

- name: Install core dependencies
working-directory: paranext-core
run: npm ci --ignore-scripts
run: npm ci --ignore-scripts --omit=optional

- name: Run tests
working-directory: extension-repo
run: npm test
run: npm run test:coverage
Loading