diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 256a3118..90cfcc9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,53 +13,53 @@ env: PNPM_VERSION: 6.35.1 jobs: - lint: - name: Linting - runs-on: ubuntu-latest + # lint: + # name: Linting + # runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3.4.0 + # steps: + # - uses: actions/checkout@v3.4.0 - - uses: pnpm/action-setup@v2.2.4 - with: - version: ${{ env.PNPM_VERSION }} + # - uses: pnpm/action-setup@v2.2.4 + # with: + # version: ${{ env.PNPM_VERSION }} - - uses: actions/setup-node@v3.6.0 - with: - node-version: 14.x - cache: pnpm + # - uses: actions/setup-node@v3.6.0 + # with: + # node-version: 14.x + # cache: pnpm - - run: pnpm install - - run: pnpm run lint + # - run: pnpm install + # - run: pnpm run lint - test: - name: Node Tests - runs-on: ${{ matrix.os }} + # test: + # name: Node Tests + # runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest] - node-version: [12.x, 14.x, 16.x] + # strategy: + # matrix: + # os: [ubuntu-latest, windows-latest] + # node-version: [12.x, 14.x, 16.x] - steps: - - uses: actions/checkout@v3.4.0 + # steps: + # - uses: actions/checkout@v3.4.0 - - uses: pnpm/action-setup@v2.2.4 - with: - version: ${{ env.PNPM_VERSION }} + # - uses: pnpm/action-setup@v2.2.4 + # with: + # version: ${{ env.PNPM_VERSION }} - - uses: actions/setup-node@v3.6.0 - with: - node-version: ${{ matrix.node-version }} - cache: pnpm + # - uses: actions/setup-node@v3.6.0 + # with: + # node-version: ${{ matrix.node-version }} + # cache: pnpm - - run: pnpm install - - run: pnpm run test:node + # - run: pnpm install + # - run: pnpm run test:node ember-try-scenarios: name: Ember Tests (${{ matrix.try-scenario }}) - needs: [test] + # needs: [test] runs-on: ubuntu-latest @@ -67,17 +67,17 @@ jobs: fail-fast: false matrix: try-scenario: - - ember-lts-3.8 - - ember-lts-3.12 - - ember-lts-3.16 - - ember-lts-3.20 - - ember-lts-3.24 - - ember-lts-3.28 + # - ember-lts-3.8 + # - ember-lts-3.12 + # - ember-lts-3.16 + # - ember-lts-3.20 + # - ember-lts-3.24 + # - ember-lts-3.28 - ember-release - ember-beta - ember-canary - - embroider-safe - - embroider-optimized + # - embroider-safe + # - embroider-optimized steps: - uses: actions/checkout@v3.4.0