Skip to content
This repository has been archived by the owner on Oct 1, 2023. It is now read-only.

Bump @types/node from 18.14.2 to 20.5.7 #357

Bump @types/node from 18.14.2 to 20.5.7

Bump @types/node from 18.14.2 to 20.5.7 #357

Workflow file for this run

name: NodeJS
on:
release: # Run when release is created
types: [created]
push:
branches: [master]
pull_request:
jobs:
build:
strategy:
matrix:
node-version: [14.x, 16.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.7.0
with:
node-version: ${{ matrix.node-version }}
- name: npm install and build
run: |
npm ci
npm run build --if-present
env:
CI: true
publish-npm:
# publish only if we are on our own repo, event was 'release' (a tag was created) and the tag starts with "v" (aka version tag)
if: github.repository == 'california444/homebridge-viessmann-control' && github.event_name == 'release'
needs: build # only run if build succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/setup-node@v3.7.0
with:
node-version: 14 # use the minimum required version
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}