Skip to content

Merge pull request #404 from equinor/fix/richtexteditor-plugin-crash #499

Merge pull request #404 from equinor/fix/richtexteditor-plugin-crash

Merge pull request #404 from equinor/fix/richtexteditor-plugin-crash #499

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: NPM Publish
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 19.x
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm run test:ci
- name: Build Components
run: npm run build-components:ci
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}