Skip to content

Bump @typescript-eslint/parser from 5.54.1 to 5.61.0 #385

Bump @typescript-eslint/parser from 5.54.1 to 5.61.0

Bump @typescript-eslint/parser from 5.54.1 to 5.61.0 #385

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-simple-track-helper
- 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-3.28
- ember-lts-4.4
- ember-lts-4.8
- ember-release
- ember-beta
- ember-canary
- ember-classic
- 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.3
- 4.4
- 4.5
- 4.6
- 4.7
- 4.8
- 4.9
- 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-simple-track-helper
- run: yarn tsc --noEmit
working-directory: ember-simple-track-helper
- run: yarn tsc --noEmit --project type-tests
working-directory: ember-simple-track-helper