
* Update imports from apps-shared package * Extract main bar and app icon * Remove graphql generated * Implement AppIcon and MainBar in data importer and invoices * Change name to TitleBar * Use TitleBar and AppIcon from shared package * Use title bar from shared in search * Refactor slack to use TitleBar from shared package * Make TitleBar sticky * Run codegen before cicd tests * Add generate script
38 lines
No EOL
982 B
YAML
38 lines
No EOL
982 B
YAML
name: Run tests
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
unit_test:
|
|
name: Unit tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: pnpm/action-setup@v2.2.4
|
|
with:
|
|
version: 7.5.0
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: "pnpm"
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
- name: Generate schema
|
|
run: pnpm generate
|
|
- name: Test
|
|
run: pnpm test:ci
|
|
# TODO: Add coverage - crawl through every package
|
|
# - name: Generate coverage report
|
|
# uses: irongut/CodeCoverageSummary@v1.3.0
|
|
# with:
|
|
# filename: coverage/cobertura-coverage.xml
|
|
# format: markdown
|
|
# output: file
|
|
#
|
|
# - name: Add Coverage PR Comment
|
|
# uses: marocchino/sticky-pull-request-comment@v2
|
|
# if: github.event_name == 'pull_request'
|
|
# with:
|
|
# recreate: true
|
|
# path: code-coverage-results.md |