Skip to content

Commit

Permalink
0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlubos committed Dec 25, 2024
1 parent ab68509 commit c667923
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 25 deletions.
51 changes: 27 additions & 24 deletions .github/workflows/CI-CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ jobs:
# - name: Run Node tests
# run: yarn test:node

- name: Send code coverage results to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
# disabled after refactoring
# - name: Send code coverage results to Coveralls
# uses: coverallsapp/github-action@v2
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel: true

browser_tests:
name: Browser Tests
Expand Down Expand Up @@ -81,25 +82,27 @@ jobs:
# - name: Run tests
# run: yarn test:browser

- name: Send code coverage results to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true

coverage:
name: Code Coverage
runs-on: ubuntu-latest
timeout-minutes: 5
needs:
- node_tests
- browser_tests
steps:
- name: Let Coveralls know that all tests have finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
# disabled after refactoring
# - name: Send code coverage results to Coveralls
# uses: coverallsapp/github-action@v2
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel: true

# disabled after refactoring
# coverage:
# name: Code Coverage
# runs-on: ubuntu-latest
# timeout-minutes: 5
# needs:
# - node_tests
# - browser_tests
# steps:
# - name: Let Coveralls know that all tests have finished
# uses: coverallsapp/github-action@v2
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# parallel-finished: true

release:
name: Release
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hey-api/json-schema-ref-parser",
"version": "0.0.0",
"version": "0.0.1",
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
"keywords": [
"json",
Expand Down

0 comments on commit c667923

Please sign in to comment.