Skip to content

pkg

pkg #9

Workflow file for this run

name: pkg
on:
push:
branches:
- main
jobs:
pkg:
runs-on: ubuntu-latest
strategy:
matrix:
arch:
- x64
- arm64
node-version:
- node19
os:
- win
- macos
steps:
- uses: actions/checkout@master
- run: |
ls
- uses: lando/pkg-action@main
with:
entrypoint: ./Lync/index.js
arch: ${{ matrix.arch }}
node-version: ${{ matrix.node-version }}
os: ${{ matrix.os }}