Skip to content

Commit c667923

Browse files
committed
0.0.1
1 parent ab68509 commit c667923

File tree

2 files changed

+28
-25
lines changed

2 files changed

+28
-25
lines changed

.github/workflows/CI-CD.yaml

+27-24
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ jobs:
4848
# - name: Run Node tests
4949
# run: yarn test:node
5050

51-
- name: Send code coverage results to Coveralls
52-
uses: coverallsapp/github-action@v2
53-
with:
54-
github-token: ${{ secrets.GITHUB_TOKEN }}
55-
parallel: true
51+
# disabled after refactoring
52+
# - name: Send code coverage results to Coveralls
53+
# uses: coverallsapp/github-action@v2
54+
# with:
55+
# github-token: ${{ secrets.GITHUB_TOKEN }}
56+
# parallel: true
5657

5758
browser_tests:
5859
name: Browser Tests
@@ -81,25 +82,27 @@ jobs:
8182
# - name: Run tests
8283
# run: yarn test:browser
8384

84-
- name: Send code coverage results to Coveralls
85-
uses: coverallsapp/github-action@v2
86-
with:
87-
github-token: ${{ secrets.GITHUB_TOKEN }}
88-
parallel: true
89-
90-
coverage:
91-
name: Code Coverage
92-
runs-on: ubuntu-latest
93-
timeout-minutes: 5
94-
needs:
95-
- node_tests
96-
- browser_tests
97-
steps:
98-
- name: Let Coveralls know that all tests have finished
99-
uses: coverallsapp/github-action@v2
100-
with:
101-
github-token: ${{ secrets.GITHUB_TOKEN }}
102-
parallel-finished: true
85+
# disabled after refactoring
86+
# - name: Send code coverage results to Coveralls
87+
# uses: coverallsapp/github-action@v2
88+
# with:
89+
# github-token: ${{ secrets.GITHUB_TOKEN }}
90+
# parallel: true
91+
92+
# disabled after refactoring
93+
# coverage:
94+
# name: Code Coverage
95+
# runs-on: ubuntu-latest
96+
# timeout-minutes: 5
97+
# needs:
98+
# - node_tests
99+
# - browser_tests
100+
# steps:
101+
# - name: Let Coveralls know that all tests have finished
102+
# uses: coverallsapp/github-action@v2
103+
# with:
104+
# github-token: ${{ secrets.GITHUB_TOKEN }}
105+
# parallel-finished: true
103106

104107
release:
105108
name: Release

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hey-api/json-schema-ref-parser",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
55
"keywords": [
66
"json",

0 commit comments

Comments
 (0)