2
0
mirror of https://github.com/tenrok/maska.git synced 2026-05-15 11:59:38 +03:00

feat!: separate packages

This commit is contained in:
Alexander Shabunevich
2024-04-15 22:07:47 +03:00
parent 685f477fe1
commit 4de44ef888
58 changed files with 1173 additions and 225 deletions
+5 -5
View File
@@ -21,24 +21,24 @@ jobs:
node-version: 18
- name: Install
run: npm i
run: npm ci
- name: Test and Coverage
run: npm run test:coverage
run: npm run test:coverage --workspace=maska
- name: Parse coverage
uses: sergeysova/jq-action@v2
id: coverage
with:
cmd: 'jq .total.statements.pct coverage/coverage-summary.json'
cmd: 'jq .total.statements.pct packages/maska/coverage/coverage-summary.json'
- name: Build demo
run: npm run build:demo
run: npm run build --workspace=docs
- name: Upload demo artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs
path: ./packages/docs/docs
badge:
runs-on: ubuntu-latest