Remove render modifiers #4267
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: {} | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
# This has been really annoying | |
# due to injected dependencies :( | |
- name: 'Re-sync injected dependencies' | |
run: pnpm install --frozen-lockfile --force | |
- name: Lint | |
run: pnpm lint | |
- name: Run Tests | |
run: pnpm test:ember | |
floating: | |
name: "Floating Dependencies" | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Remove lock file | |
shell: bash | |
run: rm pnpm-lock.yaml | |
- name: Install Dependencies | |
run: pnpm install | |
# This has been really annoying | |
# due to injected dependencies :( | |
- name: 'Re-sync injected dependencies' | |
run: pnpm install --force | |
- name: Run Tests | |
run: pnpm test:ember | |
try-scenarios: | |
name: ${{ matrix.try-scenario }} | |
runs-on: ubuntu-latest | |
needs: 'test' | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-lts-3.28 | |
- ember-lts-4.4 | |
- ember-lts-4.8 | |
- ember-lts-4.12 | |
- ember-lts-5.4 | |
- ember-lts-5.8 | |
- ember-lts-5.12 | |
- ember-release | |
- ember-classic | |
- ember-default-with-jquery | |
- embroider-safe | |
- embroider-optimized | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
# This has been really annoying | |
# due to injected dependencies :( | |
- name: 'Re-sync injected dependencies' | |
run: pnpm install --frozen-lockfile --force | |
- name: Run Tests | |
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} | |
working-directory: test-app | |
allowed-fail-try-scenarios: | |
name: ${{ matrix.try-scenario }} - Allowed to fail | |
runs-on: ubuntu-latest | |
needs: 'test' | |
permissions: | |
pull-requests: write | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-beta | |
- ember-canary | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Install Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
# This has been really annoying | |
# due to injected dependencies :( | |
- name: 'Re-sync injected dependencies' | |
run: pnpm install --frozen-lockfile --force | |
- name: Run Tests | |
id: tests | |
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} | |
continue-on-error: true | |
working-directory: test-app | |
- uses: mainmatter/continue-on-error-comment@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
outcome: ${{ steps.tests.outcome }} | |
test-id: ${{ matrix.try-scenario }} |