Skip to content

fix: include json

fix: include json #92

Workflow file for this run

name: CI
on:
push:
branches: [ main, beta ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
main:
name: Default
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: NPM install
uses: bahmutov/npm-install@v1
with:
useLockFile: false
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm run test -- --coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Semantic release
run: npx --no-install semantic-release --debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Generate docs
if: github.ref == 'refs/heads/main'
run: npm run docs
- name: Deploy to GH pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist/docs
force_orphan: true
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'