Skip to content

up 43

up 43 #103

Workflow file for this run

name: debug
env:
DEBUG: napi:*
RUST_BACKTRACE: full
APP_NAME: source-code-diagnosis
MACOSX_DEPLOYMENT_TARGET: '10.13'
permissions:
contents: write
id-token: write
on:
push:
branches:
- dev
- main
pull_request:
branches:
- dev
- main
jobs:
build:
strategy:
fail-fast: false
matrix:
settings:
- host: macos-latest
target: x86_64-apple-darwin
build: pnpm build --target x86_64-apple-darwin
name: stable - ${{ matrix.settings.target }} - node@18
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v4
- name: Setup Pnpm
uses: pnpm/action-setup@v4
with:
run_install: false
- name: Setup node
uses: actions/setup-node@v4
if: ${{ !matrix.settings.docker }}
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm run hello
env:
GITHUB_REF_NAME: ${{ github.ref_name }}