Skip to content

Documentation with VitePress #263

Documentation with VitePress

Documentation with VitePress #263

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PUPPETEER_SKIP_DOWNLOAD: true
jobs:
build-libs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm install
- run: npm run test:unit
- run: npm run build
- run: npm run prettier:check
- run: npm run lint:lib
- name: verify clean build
run: git diff --exit-code