Skip to content

doc: Fix line break #1405

doc: Fix line break

doc: Fix line break #1405

Workflow file for this run

name: Main
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Run tests with ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
corepack enable yarn
yarn install
yarn lint
yarn build
yarn test
yarn build:demo
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}