Skip to content

Prepare Release v5.0.5 using 'release-plan' (#565) #722

Prepare Release v5.0.5 using 'release-plan' (#565)

Prepare Release v5.0.5 using 'release-plan' (#565) #722

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lints"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm build
working-directory: vertical-collection
- run: pnpm lint
test:
name: "Tests"
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm build
working-directory: vertical-collection
- run: pnpm test
working-directory: test-app
floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
timeout-minutes: 12
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
with:
args: --no-lockfile
- run: pnpm build
working-directory: vertical-collection
- run: pnpm test
working-directory: test-app
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
timeout-minutes: 12
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-3.28
- ember-lts-4.12
- ember-lts-5.12
- ember-lts-6.12
- ember-release
- ember-beta
- ember-canary
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm build
working-directory: vertical-collection
- name: Ember-Try Setup
run: node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup --- pnpm test
working-directory: test-app