Skip to content

Rename video to content #15

Rename video to content

Rename video to content #15

Workflow file for this run

name: Deployment Pipeline
on:
workflow_dispatch:
push:
branches: ["main"]
tags:
- "v*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.0
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
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/checkout@v4.1.0
- name: Setup Node.js environment
uses: actions/setup-node@v3.8.1
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: Publish package
run: npm -w src/service publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}