Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

chore(deps): bump ember-cli-babel from 7.26.11 to 8.2.0 #425

chore(deps): bump ember-cli-babel from 7.26.11 to 8.2.0

chore(deps): bump ember-cli-babel from 7.26.11 to 8.2.0 #425

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: volta-cli/action@v1
- uses: mydea/actions-ember-testing@v2
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: |
yarn lint:js
yarn lint:hbs
yarn tsc
- name: Run Tests
run: yarn test
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: "test"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-3.24
- ember-lts-3.28
- ember-release
- ember-beta
- ember-canary
- ember-classic
- embroider-safe
- embroider-optimized
steps:
- uses: actions/checkout@v3
- uses: volta-cli/action@v1
- uses: mydea/actions-ember-testing@v2
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Setup dummy .env file
run: touch .env
- name: Run Tests
run: yarn test:one ${{ matrix.try-scenario }}