Update dependency @embroider/addon-dev to v7 #3849
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: {} | |
env: | |
PNPM_VERSION: 8.15.9 | |
concurrency: | |
group: ci-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Lint Addon | |
run: pnpm run lint | |
working-directory: ember-mobile-menu | |
- name: Lint Test App | |
run: pnpm run lint | |
working-directory: test-app | |
- name: Run Tests | |
run: pnpm run test:ember | |
working-directory: test-app | |
floating: | |
name: "Floating Dependencies" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- name: Remove lock file | |
shell: bash | |
run: rm pnpm-lock.yaml | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Run Tests | |
run: pnpm run test:ember | |
working-directory: test-app | |
try-scenarios: | |
name: ${{ matrix.try-scenario }} | |
runs-on: ubuntu-latest | |
needs: 'test' | |
strategy: | |
fail-fast: false | |
matrix: | |
try-scenario: | |
- ember-lts-3.28 | |
- ember-lts-4.4 | |
- ember-lts-4.8 | |
- ember-lts-4.12 | |
- ember-release | |
- ember-classic | |
- ember-default-with-jquery | |
- embroider-safe | |
- embroider-optimized | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- 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/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- name: Install Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- 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 }} |