Skip to content

chore(website): fix missing link to API docs in mobile view (#1433) #3829

chore(website): fix missing link to API docs in mobile view (#1433)

chore(website): fix missing link to API docs in mobile view (#1433) #3829

Workflow file for this run

on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
name: Check test coverage
jobs:
build:
if: "github.event.pull_request.draft == false &&!((github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'ci: update global workflows')) || (github.actor == 'asyncapi-bot' && startsWith(github.event.pull_request.title, 'chore(release):')) || (github.actor == 'allcontributors' && startsWith(github.event.pull_request.title, 'docs: add')))"
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 14
- name: npm install, run test
run: |
npm install
npm run test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}