Skip to content

readme

readme #5

Workflow file for this run

name: build
on: [workflow_call, push]
jobs:
build:
runs-on: ubuntu-latest
if: ${{ github.workflow == 'publish' || !contains(github.event.head_commit.message, '[skip build]') }}
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run build
- run: npm run lint
- uses: codecov/codecov-action@v2
- run: npm run type-coverage
- name: persist to workspace
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*