Skip to content

Commit a20d139

Browse files
committed
Prepare actions for release
1 parent eee9ce4 commit a20d139

3 files changed

Lines changed: 19 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
brances:
5+
- release
6+
- master
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
id-token: write
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: test
17+
run: npx deno test
18+

.github/workflows/publish.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,5 @@ jobs:
1212
id-token: write
1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: test
16-
run: npx deno test
1715
- name: Publish package
1816
run: npx jsr publish

src/classes/OrderedPair.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export class OrderedPair<T> {
2626
return this.second
2727
}
2828

29-
print(){
29+
print() : string {
3030
return `(${this.first}, ${this.second})`
3131
}
3232

0 commit comments

Comments
 (0)