Skip to content

Fix hashtag plugin: add support for full width middle dot (#492) #167

Fix hashtag plugin: add support for full width middle dot (#492)

Fix hashtag plugin: add support for full width middle dot (#492) #167

Workflow file for this run

name: Node.js CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- name: 'Setup tests'
run: bash test/setup.sh
- name: 'Run basic tests'
run: bash test/run.sh
integration:
runs-on: ubuntu-latest
needs: unit
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm install
- name: 'Setup dist'
run: bash test/setup.sh --dist
- name: 'Run complete test suite'
run: bash test/run.sh --dist
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}