Skip to content

Commit

Permalink
Merge pull request #593 from 'ember-cli/rwjblue/remove-appveyor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Oct 29, 2020
2 parents 3f545fd + bcc386b commit f2d0ccb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 40 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -132,13 +132,12 @@ jobs:
matrix:
node: ['10', '12', '14']

name: Tests (Node.js v${{ matrix.node }} with npm)
name: Smoke Tests (Node v${{ matrix.node }} with npm)
runs-on: ubuntu-latest

needs:
- lint
- tests
- floating-deps

steps:
- uses: actions/checkout@v1
Expand All @@ -159,13 +158,12 @@ jobs:
matrix:
node: ['10', '12', '14']

name: Tests (Node.js v${{ matrix.node }} with yarn)
name: Smoke Tests (Node v${{ matrix.node }} with yarn)
runs-on: ubuntu-latest

needs:
- lint
- tests
- floating-deps

steps:
- uses: actions/checkout@v1
Expand All @@ -180,3 +178,25 @@ jobs:
working-directory: smoke-test-app
- run: ./node_modules/.bin/ember try:one test2 --config-path='../test/fixtures/dummy-ember-try-config-with-yarn-scenarios.js'
working-directory: smoke-test-app

windows-smoke-tests:
name: Smoke Tests (Windows)
runs-on: windows-latest

needs:
- lint
- tests

steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12

- name: install deps
run: yarn install
- name: install smoke-test-app deps
run: npm install
working-directory: smoke-test-app
- run: ./node_modules/.bin/ember try:one test2 --config-path='../test/fixtures/dummy-ember-try-config-with-npm-scenarios.js'
working-directory: smoke-test-app
36 changes: 0 additions & 36 deletions appveyor.yml

This file was deleted.

0 comments on commit f2d0ccb

Please sign in to comment.