Skip to content

Make tls enabled by default #263

Make tls enabled by default

Make tls enabled by default #263

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: 'latest'
- name: Install dependencies
run: npm ci
- name: Package unsigned mac app
run: npm run package:mac:nosign
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}