-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: fixes missing deps in frontend gha workflows
Signed-off-by: Dan Bond <[email protected]>
- Loading branch information
Showing
1 changed file
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,9 @@ jobs: | |
with: | ||
node-version: '16' | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
||
# Install dependencies. | ||
- name: install yarn packages | ||
working-directory: ui | ||
|
@@ -58,6 +61,9 @@ jobs: | |
with: | ||
node-version: '16' | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
||
# Install dependencies. | ||
- name: install yarn packages | ||
working-directory: ui | ||
|
@@ -68,18 +74,24 @@ jobs: | |
|
||
ember-build-test: | ||
needs: setup | ||
runs-on: ${{ fromJSON(needs.setup.outputs.compute-large) }} | ||
runs-on: ${{ fromJSON(needs.setup.outputs.compute-xl) }} | ||
env: | ||
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 | ||
CONSUL_NSPACES_ENABLED: 0 # NOTE: this should be 1 in ENT. | ||
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 | ||
CONSUL_NSPACES_ENABLED: ${{ endsWith(github.repository, '-enterprise') && 1 || 0 }} # NOTE: this should be 1 in ENT. | ||
steps: | ||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # [email protected] | ||
|
||
- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # [email protected] | ||
with: | ||
node-version: '16' | ||
|
||
- name: Install Yarn | ||
run: npm install -g yarn | ||
|
||
- name: Install Chrome | ||
uses: browser-actions/setup-chrome@29abc1a83d1d71557708563b4bc962d0f983a376 # [email protected] | ||
|
||
# Install dependencies. | ||
- name: install yarn packages | ||
working-directory: ui | ||
|