Skip to content

v2 Addon prep: move everything in to a single package monorepo #2080

v2 Addon prep: move everything in to a single package monorepo

v2 Addon prep: move everything in to a single package monorepo #2080

Workflow file for this run

name: CI Build
on:
push:
branches:
- master
- 'v*'
pull_request:
schedule:
- cron: '0 3 * * *' # daily, at 3am
jobs:
test:
timeout-minutes: 10
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm lint
- run: pnpm test:ember
working-directory: addon
floating-dependencies:
timeout-minutes: 10
name: "Floating Dependencies"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- run: pnpm test:ember
working-directory: addon
try-scenarios:
timeout-minutes: 10
name: "Try: ${{ matrix.ember-try-scenario }}"
runs-on: ubuntu-latest
needs: test
strategy:
fail-fast: false
matrix:
ember-try-scenario:
- ember-lts-3.8
- ember-lts-3.12
- ember-lts-3.16
- ember-lts-3.20
- ember-lts-3.24
- ember-release
- ember-beta
- ember-canary
- ember-classic
- ember-default-with-jquery
- embroider-safe
- embroider-optimized
steps:
- uses: actions/checkout@v4
- uses: wyvox/action-setup-pnpm@v3
- name: test
run: node_modules/.bin/ember try:one ${{ matrix.ember-try-scenario }} --skip-cleanup
working-directory: addon
with:

Check failure on line 67 in .github/workflows/ci-build.yml

View workflow run for this annotation

GitHub Actions / CI Build

Invalid workflow file

The workflow is not valid. .github/workflows/ci-build.yml (Line: 67, Col: 9): Unexpected value 'with'
node-version: 18.18.1