Add Safari 26 to supported browsers

This commit is contained in:
Steve Gravrock
2025-11-03 07:37:11 -08:00
parent ff9feb29d3
commit 9a9d3994da
6 changed files with 41 additions and 7 deletions

21
.github/workflows/safari.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
name: Test in latest available Safari
on:
push:
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- name: Report Safari version
run: osascript -e 'get version of application "Safari"'
- uses: actions/checkout@v4
- name: Use Node.js 22.x
uses: actions/setup-node@v4
with:
node-version: 22.x
- run: npm install
- run: npm run build
- run: JASMINE_BROWSER=safari npm run ci