Skip to content

Bump ember-qunit from 8.0.2 to 8.1.0 #1961

Bump ember-qunit from 8.0.2 to 8.1.0

Bump ember-qunit from 8.0.2 to 8.1.0 #1961

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:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Lint
run: yarn lint
- name: Run Tests
run: yarn test:ember
floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install --no-lockfile
- name: Run Tests
run: yarn test:ember
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: test
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.12
- ember-lts-5.4
- ember-release
- ember-beta
- ember-canary
- embroider-safe
# - embroider-optimized
steps:
- uses: actions/checkout@v2
- name: Install Node
uses: actions/setup-node@v2
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn ember try:one ${{ matrix.try-scenario }}
# deploy:
# if: contains(github.ref, 'master')
# name: Deploy
# needs: ember-try
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v1
# - name: Use Node.js
# uses: actions/setup-node@v1
# with:
# node-version: 10.x
# - name: Install Dependencies
# run: yarn install
# - name: Deploy
# run: yarn ember deploy production --verbose