Skip to content

Bump actions/checkout from 2.3.5 to 4.1.4 #498

Bump actions/checkout from 2.3.5 to 4.1.4

Bump actions/checkout from 2.3.5 to 4.1.4 #498

Workflow file for this run

name: NodeJS
on:
push:
branches: '**'
pull_request:
release: # Run when release is created
types: [created]
jobs:
build:
strategy:
matrix:
node-version: [10.x, 12.x, 13.x, 14.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4.1.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.5.1
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 == 'Sunoo/homebridge-smtp-motion' && github.event_name == 'release' && startsWith(github.ref, 'refs/tags/v')
needs: build # only run if build succeeds
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.4
- uses: actions/setup-node@v2.5.1
with:
node-version: 10 # use the minimum required version
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}