Skip to content

html editor mentions fixes #326

html editor mentions fixes

html editor mentions fixes #326

Workflow file for this run

name: Build
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- main
- 'releases/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: node_modules-${{hashFiles('package-lock.json')}}
restore-keys: node_modules- # Take any latest cache if failed to find it for current yarn.lock
- name: npm install, build, and test
run: |
npm ci
npm run build --if-present
env:
CI: true
- id: publish
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}