Skip to content

Commit

Permalink
Add CI configuration for tesing on Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderKnauff committed Dec 19, 2023
1 parent 677304e commit fb14892
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
- name: Test
run: pnpm test:ember

test-safari:
runs-on: macos-latest
steps:
- name: Checkout code
uses: wyvox/action@v1
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test:ember

test-no-lock:
name: Floating Dependencies
runs-on: ubuntu-latest
Expand Down
14 changes: 14 additions & 0 deletions testem.safari.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
'use strict';

/* eslint-env node */
module.exports = {
test_page: 'tests/index.html?hidepassed',
disable_watching: true,
parallel: 1,
browser_start_timeout: 2000,
browser_disconnect_timeout: 120,
launch_in_ci: ['Safari'],
launchers: {
Safari: {},
},
};

0 comments on commit fb14892

Please sign in to comment.