Skip to content

Forward fixes from 3.12.x into main #1473

Forward fixes from 3.12.x into main

Forward fixes from 3.12.x into main #1473

Workflow file for this run

name: Compat
on:
pull_request:
branches:
- main
concurrency:
group: compat-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true
jobs:
fastboot:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
restore-broccoli-cache: true
install: true
- name: Run Tests
run: pnpm test:fastboot
embroider:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
restore-broccoli-cache: true
install: true
- name: Run Tests
run: pnpm test:embroider
floating-dependencies:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
- name: Install dependencies w/o lockfile
run: pnpm install --no-lockfile
- name: Basic Tests
run: pnpm test
node-version-test:
name: Use Node.js ${{ matrix.node-version }}
timeout-minutes: 8
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node-version }}
restore-broccoli-cache: true
install: true
- name: Basic Tests
run: pnpm test