chore(deps): update dependency @glimmer/component to v2 #2862
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": | |
workflow_dispatch: {} | |
pull_request: null | |
push: | |
branches: | |
- main | |
schedule: | |
- cron: "0 3 * * 0 " | |
jobs: | |
lint: | |
name: Lint | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
path: | |
- ./ember-statechart-component | |
- ./test-app | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- run: cd ${{ matrix.path }} && pnpm run lint | |
tests: | |
name: Default Tests | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- run: pnpm --filter test-app run test:ember | |
floating-deps-tests: | |
name: Floating Deps Test | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
needs: tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
with: | |
args: '--no-lockfile' | |
- run: pnpm --filter test-app run test:ember | |
# This seems to not work at the moment -- can't connect to browser | |
# try-scenarios: | |
# name: ${{ matrix.ember-try-scenario }} | |
# timeout-minutes: 10 | |
# runs-on: ubuntu-latest | |
# needs: tests | |
# strategy: | |
# fail-fast: true | |
# matrix: | |
# ember-try-scenario: | |
# - ember-5.1 | |
# - ember-5.4 | |
# - ember-5.8 | |
# - ember-5.12 | |
# - ember-release | |
# - ember-beta | |
# - ember-canary | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: wyvox/action-setup-pnpm@v3 | |
# - name: test | |
# working-directory: ./test-app | |
# run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} | |
# --skip-cleanup | |
typescript-compatibility: | |
name: ${{ matrix.typescript-scenario }} | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
needs: tests | |
strategy: | |
fail-fast: true | |
matrix: | |
typescript-scenario: | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
- [email protected] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: wyvox/action-setup-pnpm@v3 | |
- name: Update TS Version | |
run: pnpm add --save-dev ${{ matrix.typescript-scenario }} | |
working-directory: ./test-app | |
- name: Type checking | |
run: >- | |
pnpm --filter test-app exec tsc -v; | |
pnpm --filter test-app exec glint --version; | |
pnpm --filter test-app exec glint |