Skip to content

Workflow file for this run

name: Build for Safari
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
node-version: [22.x, 23.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install xcrun
run: sudo xcode-select -s /Library/Developer/CommandLineTools
- name: Install Safari Web Extension Converter
run: sudo xcode-select -s /Applications/Xcode.app
- name: Install Packages
run: npm install
- name: Build
run: npm run release-safari
- name: Upload Build as Artifact
uses: actions/upload-artifact@v4
with:
name: dist-safari-${{ matrix.node-version }}
path: dist-safari
xcrun /Applications/Xcode.app/Contents/Developer/usr/bin/safari-web-extension-converter

Check failure on line 33 in .github/workflows/build-safari.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-safari.yml

Invalid workflow file

You have an error in your yaml syntax on line 33