Skip to content

update

update #354

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 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