Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.1.1 to 7.4.0 #822

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.1.1 to 7.4.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.1.1 to 7.4.0 #822

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "v*"
# always run CI for tags
tags:
- "*"
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
- name: Install Node
uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint Addon
run: yarn lint
working-directory: ember-async-data
- name: Lint Test App
run: yarn lint
working-directory: test-app
- name: Run Tests
run: yarn test:ember
working-directory: test-app
floating:
name: "Floating Dependencies"
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --no-lockfile
- name: Run Tests
run: yarn test:ember
working-directory: test-app
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: "test"
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
try-scenario:
- ember-lts-4.8
- ember-lts-4.12
- ember-release
- ember-beta
- ember-canary
- embroider-safe
- embroider-optimized
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }}
working-directory: test-app
tests_ts:
name: "Type checking: TS ${{ matrix.ts-version }}"
runs-on: ubuntu-latest
needs: test
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
ts-version:
- 4.7
- 4.8
- 4.9
- 5.0
- 5.1
- next
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: volta-cli/action@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- run: yarn add -D typescript@${{ matrix.ts-version }}
working-directory: ember-async-data
- run: yarn tsc --noEmit
working-directory: ember-async-data
- run: yarn tsc --noEmit --project type-tests
working-directory: ember-async-data