Skip to content

Add Subtitle Editor - 0.2.0 #5

Add Subtitle Editor - 0.2.0

Add Subtitle Editor - 0.2.0 #5

name: Test and Publish package to NPM
on:
release:
types: [created]
jobs:
deploy:
if: success()
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm run eslint
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}