Skip to content

Commit

Permalink
Added added typescript implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
goruha committed Sep 10, 2024
1 parent 3b2ae1e commit 762ef5e
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 9 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test-multiline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci

run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-negative.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-positive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-query-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-query-2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-query-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-structure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test-wrong-yaml-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
cache: yarn

- name: install dependencies
run: yarn add ci
run: |-
yarn add ci
yarn build
- uses: ./
id: current
Expand Down

0 comments on commit 762ef5e

Please sign in to comment.