Skip to content

Commit

Permalink
add error-or (partially)
Browse files Browse the repository at this point in the history
  • Loading branch information
vorant94 committed Nov 16, 2024
1 parent 9ec9247 commit a6983f8
Show file tree
Hide file tree
Showing 7 changed files with 1,434 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,28 @@ jobs:
- name: TS
run: npm run tsc

test:
name: Test
runs-on: ubuntu-latest
needs:
- ts
steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Setup Node & NPM
uses: ./.github/actions/setup

- name: Run Unit Tests
run: npx vitest run --coverage

- name: Upload Unit Test Coverage Report
uses: actions/upload-artifact@v4
with:
name: test-report
path: coverage/
retention-days: 30

build:
name: Build
runs-on: ubuntu-latest
Expand Down Expand Up @@ -73,6 +95,7 @@ jobs:
name: Migrate
runs-on: ubuntu-latest
needs:
- test
- build
outputs:
bundle-cache-hit: ${{ steps.cache-bundle.outputs.cache-hit }}
Expand All @@ -99,6 +122,7 @@ jobs:
needs:
- lint
- ts
- test
- build
- migrate
if: |
Expand Down
Loading

0 comments on commit a6983f8

Please sign in to comment.