Skip to content

Commit

Permalink
Try different method of installing dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
  • Loading branch information
jansav committed Feb 10, 2023
1 parent 26ca683 commit 7e3eb64
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/daily-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Build package
shell: bash
run: |
npm ci
npm install
npm run build
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Generate Extensions API Reference using typedocs
run: |
npm ci
npm install
npm run build:docs
- name: mkdocs deploy master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Generate NPM packages
run: |
npm ci
npm install
npm run build
- name: Publish NPM packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
timeout_minutes: 20
max_attempts: 3
retry_on: error
command: npm ci
command: npm install

- run: npm run test:unit
name: Run tests
Expand Down

0 comments on commit 7e3eb64

Please sign in to comment.