$
This commit is contained in:
33
node_modules/bonjour-service/.github/workflows/build-and-test.yml
generated
vendored
Normal file
33
node_modules/bonjour-service/.github/workflows/build-and-test.yml
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
||||
name: Node.js CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
pull_request_target :
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [12.x, 14.x, 16.x]
|
||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
cache: 'npm'
|
||||
- run: yarn install
|
||||
- run: yarn build
|
||||
- run: yarn test | npx tap-pessimist
|
23
node_modules/bonjour-service/.github/workflows/publish-release.yml
generated
vendored
Normal file
23
node_modules/bonjour-service/.github/workflows/publish-release.yml
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: build
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
build-publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: 14
|
||||
registry-url: https://registry.npmjs.org/
|
||||
- run: yarn install
|
||||
- run: yarn build
|
||||
- run: git config --global user.name "ON LX Team"
|
||||
- run: git config --global user.email "team@onlx.ltd"
|
||||
- run: npm version ${{ github.event.release.tag_name }} --allow-same-version
|
||||
- run: npm publish
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
Reference in New Issue
Block a user