Skip to content

[Bug] Render multiple cards successfully #108

[Bug] Render multiple cards successfully

[Bug] Render multiple cards successfully #108

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
test:
name: Tests
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run test:ember
floating:
name: Floating Dependencies
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --no-lockfile
- run: pnpm run test:ember
try-scenarios:
name: Ember Try - ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: test
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.4
- ember-lts-4.12
- ember-lts-5.12
- ember-release
- ember-beta
- ember-canary
steps:
- uses: actions/checkout@v4
- uses: volta-cli/action@v4
- run: volta install node pnpm
- run: pnpm install --frozen-lockfile
- run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}