chore(deps): update dependency ember-source to v5 #6464
Workflow file for this run
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: | |
- master | |
- 'v*' | |
pull_request: {} | |
schedule: | |
- cron: '0 3 * * *' # daily, at 3am | |
env: | |
PNPM_VERSION: 8.8.0 | |
jobs: | |
docs: | |
name: API docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/[email protected] | |
with: | |
node-version: 18.17 | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm run docs | |
# ensure there are no changes compared to the current API.md | |
- run: git diff --exit-code | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/[email protected] | |
with: | |
node-version: 18.17 | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm lint | |
- run: pnpm test:coverage --runInBand | |
- run: pnpm test:ember | |
compatibility: | |
name: "Tests (Ember.js, ember-try: ${{ matrix.ember-try-scenario }}, Embroider: ${{ matrix.embroider }})" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
embroider: ["true", "false"] | |
ember-try-scenario: | |
- ember-lts-3.28 | |
- ember-lts-4.12 | |
steps: | |
- uses: actions/[email protected] | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ env.PNPM_VERSION }} | |
- uses: actions/[email protected] | |
with: | |
node-version: 18.17 | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm build | |
- run: pnpm --filter test-app try:one ${{ matrix.ember-try-scenario}} --skip-cleanup | |
env: | |
USE_EMBROIDER: "${{ matrix.embroider }}" |