mirror of
https://github.com/status-im/consul.git
synced 2025-01-30 23:46:03 +00:00
ci: fixes missing deps in frontend gha workflows (#16872)
Signed-off-by: Dan Bond <danbond@protonmail.com>
This commit is contained in:
parent
25f9da48d7
commit
bdff71500f
16
.github/workflows/frontend.yml
vendored
16
.github/workflows/frontend.yml
vendored
@ -41,6 +41,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: '16'
|
node-version: '16'
|
||||||
|
|
||||||
|
- name: Install Yarn
|
||||||
|
run: npm install -g yarn
|
||||||
|
|
||||||
# Install dependencies.
|
# Install dependencies.
|
||||||
- name: install yarn packages
|
- name: install yarn packages
|
||||||
working-directory: ui
|
working-directory: ui
|
||||||
@ -58,6 +61,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: '16'
|
node-version: '16'
|
||||||
|
|
||||||
|
- name: Install Yarn
|
||||||
|
run: npm install -g yarn
|
||||||
|
|
||||||
# Install dependencies.
|
# Install dependencies.
|
||||||
- name: install yarn packages
|
- name: install yarn packages
|
||||||
working-directory: ui
|
working-directory: ui
|
||||||
@ -68,11 +74,11 @@ jobs:
|
|||||||
|
|
||||||
ember-build-test:
|
ember-build-test:
|
||||||
needs: setup
|
needs: setup
|
||||||
runs-on: ${{ fromJSON(needs.setup.outputs.compute-large) }}
|
runs-on: ${{ fromJSON(needs.setup.outputs.compute-xl) }}
|
||||||
env:
|
env:
|
||||||
EMBER_TEST_REPORT: test-results/report-oss.xml # outputs test report for CircleCI test summary
|
EMBER_TEST_REPORT: test-results/report-oss.xml # outputs test report for CircleCI test summary
|
||||||
EMBER_TEST_PARALLEL: true # enables test parallelization with ember-exam
|
EMBER_TEST_PARALLEL: true # enables test parallelization with ember-exam
|
||||||
CONSUL_NSPACES_ENABLED: 0 # NOTE: this should be 1 in ENT.
|
CONSUL_NSPACES_ENABLED: ${{ endsWith(github.repository, '-enterprise') && 1 || 0 }} # NOTE: this should be 1 in ENT.
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # pin@v3.3.0
|
||||||
|
|
||||||
@ -80,6 +86,12 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
node-version: '16'
|
node-version: '16'
|
||||||
|
|
||||||
|
- name: Install Yarn
|
||||||
|
run: npm install -g yarn
|
||||||
|
|
||||||
|
- name: Install Chrome
|
||||||
|
uses: browser-actions/setup-chrome@29abc1a83d1d71557708563b4bc962d0f983a376 # pin@v1.2.1
|
||||||
|
|
||||||
# Install dependencies.
|
# Install dependencies.
|
||||||
- name: install yarn packages
|
- name: install yarn packages
|
||||||
working-directory: ui
|
working-directory: ui
|
||||||
|
Loading…
x
Reference in New Issue
Block a user