Skip to content

Fix CI: Upgrade to Node 20 and add missing npm install step #3

Fix CI: Upgrade to Node 20 and add missing npm install step

Fix CI: Upgrade to Node 20 and add missing npm install step #3

Workflow file for this run

name: node-mac-virtual-display Package
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}