Merge pull request #4211 from jeremymcs/fix/ci-pipeline-install-web-deps
fix(ci): install web host deps in dev-publish job
This commit is contained in:
commit
12799fbe0b
2 changed files with 3 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -8,7 +8,6 @@ on:
|
|||
- '.github/workflows/ai-triage.yml'
|
||||
- '.github/workflows/build-native.yml'
|
||||
- '.github/workflows/cleanup-dev-versions.yml'
|
||||
- '.github/workflows/pipeline.yml'
|
||||
- 'LICENSE'
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
|
@ -16,7 +15,6 @@ on:
|
|||
- '.github/workflows/ai-triage.yml'
|
||||
- '.github/workflows/build-native.yml'
|
||||
- '.github/workflows/cleanup-dev-versions.yml'
|
||||
- '.github/workflows/pipeline.yml'
|
||||
- 'LICENSE'
|
||||
|
||||
concurrency:
|
||||
|
|
|
|||
3
.github/workflows/pipeline.yml
vendored
3
.github/workflows/pipeline.yml
vendored
|
|
@ -45,6 +45,9 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
- name: Install web host dependencies
|
||||
run: npm --prefix web ci
|
||||
|
||||
- name: Cache Next.js build
|
||||
uses: useblacksmith/cache@v5
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue