Skip to content

Commit dfaa2b8

Browse files
authoredMar 22, 2024
feat: ember specific data utils (#9260)
* feat: ember data primitives * more fixes * maybe * update settings * all the things * test fixes etc * fixes * more updates * fixup * fix workflow * lint fixes * add brew back * all the lint * fix fastboot tests * more fixes? * updates * fix all the things * cleanup lint * bump timeout * cleanup * more tests and gts fixes * more tests * all the, nice things * cleanup * more updates * fixes
1 parent 630ed26 commit dfaa2b8

File tree

191 files changed

+8556
-4063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+8556
-4063
lines changed
 

‎.github/actions/setup/action.yml

+16
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ inputs:
4646
description: Token to use for TurboRepo
4747
required: false
4848
default: ''
49+
with-cert:
50+
description: Whether to setup an SSL Cert
51+
required: false
52+
default: false
4953

5054
runs:
5155
using: composite
@@ -67,6 +71,18 @@ runs:
6771
with:
6872
repo-token: ${{ inputs.repo-token }}
6973

74+
- name: Set Up Homebrew
75+
if: ${{ inputs.with-cert }}
76+
id: set-up-homebrew
77+
uses: Homebrew/actions/setup-homebrew@master
78+
79+
- name: 'Setup SSL Cert'
80+
if: ${{ inputs.with-cert }}
81+
shell: bash
82+
run: |
83+
sudo apt install libnss3-tools
84+
brew install mkcert
85+
7086
- name: Configure Parallel Builds
7187
if: ${{ inputs.parallel-build == 'true' }}
7288
shell: bash

‎.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
jobs:
2525
lint:
26-
timeout-minutes: 6
26+
timeout-minutes: 8
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
@@ -49,6 +49,7 @@ jobs:
4949
restore-broccoli-cache: true
5050
install: true
5151
repo-token: ${{ secrets.GITHUB_TOKEN }}
52+
with-cert: true
5253
- if: |
5354
github.event_name == 'pull_request' && (
5455
github.base_ref == 'main' || github.base_ref == 'beta'
@@ -90,6 +91,7 @@ jobs:
9091
restore-broccoli-cache: true
9192
jobs: 2
9293
parallel-build: true
94+
with-cert: true
9395
install: true
9496
repo-token: ${{ secrets.GITHUB_TOKEN }}
9597

@@ -156,6 +158,7 @@ jobs:
156158
- uses: ./.github/actions/setup
157159
with:
158160
restore-broccoli-cache: true
161+
with-cert: true
159162
install: true
160163
repo-token: ${{ secrets.GITHUB_TOKEN }}
161164
- name: Basic tests with ${{ matrix.scenario }}
@@ -183,6 +186,7 @@ jobs:
183186
- uses: ./.github/actions/setup
184187
with:
185188
restore-broccoli-cache: true
189+
with-cert: true
186190
install: true
187191
repo-token: ${{ secrets.GITHUB_TOKEN }}
188192
- name: Basic tests with ${{ matrix.release }}

0 commit comments

Comments
 (0)