mirror of
https://github.com/danog/fast-srp.git
synced 2024-11-26 20:04:49 +01:00
Adding basic workflow file
This commit is contained in:
parent
16fcb1cb88
commit
a9ddb8721d
49
.github/workflows/nodejs.yml
vendored
Normal file
49
.github/workflows/nodejs.yml
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
name: Node-CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: master
|
||||
pull_request:
|
||||
create: # Run when tag is created
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [10.x]
|
||||
os: [ubuntu-latest]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: npm install
|
||||
run: |
|
||||
npm ci
|
||||
npm run build --if-present
|
||||
env:
|
||||
CI: true
|
||||
|
||||
publish-npm:
|
||||
# publish only if we are on our own repo, event was 'create' (a tag was created) and the tag starts with "v" (aka version tag)
|
||||
if: github.repository == 'homebridge/fast-srp' && github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v')
|
||||
|
||||
needs: build # only run if build succeeds
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/setup-node@v1
|
||||
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 }}
|
Loading…
Reference in New Issue
Block a user