Skip to content

Adding some missing path. to code quick-start.mdx examples #458

Adding some missing path. to code quick-start.mdx examples

Adding some missing path. to code quick-start.mdx examples #458

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: npm
- name: test
run: |
npm install
npm run test:cov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}