Skip to content

Update dependency ember-cli-addon-docs to v6 #2196

Update dependency ember-cli-addon-docs to v6

Update dependency ember-cli-addon-docs to v6 #2196

Workflow file for this run

name: Test
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
tags:
- "*"
pull_request:
jobs:
test:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: NullVoxPopuli/action-setup-pnpm@v2
with:
pnpm-version: 8.5.1
node-version: 16.x
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm test:ember
working-directory: test-app
try-scenarios:
name: "ember-try: ${{ matrix.ember-try-scenario }}"
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [test]
strategy:
fail-fast: false
matrix:
ember-try-scenario:
- ember-lts-3.28
- ember-lts-4.4
- "ember-release"
- "ember-beta"
- "ember-canary"
- "embroider-safe"
- "embroider-optimized"
- "ember-classic"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: NullVoxPopuli/action-setup-pnpm@v2
with:
pnpm-version: 8.5.1
node-version: 16.x
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Test
run: pnpm ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
working-directory: test-app
floating-dependencies:
name: Floating dependencies
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [test]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install pnpm
uses: NullVoxPopuli/action-setup-pnpm@v2
with:
pnpm-version: 8.5.1
node-version: 16.x
no-lockfile: true
- name: Install dependencies
run: pnpm install --no-lockfile
- name: Test
run: pnpm test:ember
working-directory: test-app