v1.0.3 #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deployment Pipeline | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
tags: | |
- "v*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
- name: Install dependencies | |
run: npm ci | |
- name: Run service tests | |
run: npm -w src/service test | |
- name: Run plugin tests | |
run: npm -w src/plugin test --watch=false --coverage | |
publish-service: | |
runs-on: ubuntu-latest | |
needs: test | |
if: startsWith(github.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
registry-url: "https://registry.npmjs.org" | |
- name: Install dependencies | |
run: npm ci | |
- name: Build sources | |
run: npm -w src/service run build | |
- name: Check for changes in service directory | |
id: check-changes | |
run: | | |
if git diff --quiet HEAD^ HEAD -- ./src/service/; then | |
echo "::set-output name=changed::false" | |
else | |
echo "::set-output name=changed::true" | |
fi | |
- name: Publish package | |
if: steps.check-changes.outputs.changed == 'true' | |
run: npm -w src/service publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |