Skip to content

Commit

Permalink
Travis -> GHA (#61)
Browse files Browse the repository at this point in the history
* Travis -> GHA

* Fail fast

* Don't care.
  • Loading branch information
UserNotFound authored Jul 10, 2024
1 parent 60ba59e commit 621b044
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 38 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
NODE_OPTIONS: --use-openssl-ca

jobs:
test:
name: Test ${{ matrix.EMBER_TRY_SCENARIO }}
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
EMBER_TRY_SCENARIO: [default, ember-release, ember-beta, ember-canary]

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Add Chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: stable
install-chromedriver: true
install-dependencies: true

- name: Install node
uses: actions/setup-node@v4
with:
node-version: 8.9.4

- name: Setup
run: |
yarn global add [email protected]
yarn global add bower
yarn install
bower install
- name: Test
run: |
echo "These tests do not work at present due to outdated code" \
"maybe try to fix them if you need to make changes in this repo?"
ember try ${{ matrix.EMBER_TRY_SCENARIO }} test
38 changes: 0 additions & 38 deletions .travis.yml

This file was deleted.

0 comments on commit 621b044

Please sign in to comment.