Skip to content

Commit 9325190

Browse files
authored
Organize code (schpet#46)
1 parent a3b29db commit 9325190

40 files changed

+2412
-21533
lines changed

.aider.conf.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.github/workflows/build-setup.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
uses: denoland/setup-deno@v2
33
with:
44
deno-version: v2.x
5+
- name: Generate GraphQL code
6+
run: deno task codegen

.github/workflows/ci.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212
with:
1313
deno-version: v2.x
1414

15+
- name: Generate GraphQL code
16+
run: deno task codegen
17+
1518
- name: Check formatting
1619
run: deno fmt --check
1720

1821
- name: Lint code
1922
run: deno lint
2023

2124
- name: Type check
22-
run: deno check --unstable-sloppy-imports main.ts
25+
run: deno check --all
2326

2427
- name: Run tests
25-
run: deno test '--allow-env=GITHUB_*,GH_*,LINEAR_*,NODE_ENV' --allow-read --allow-write --unstable-sloppy-imports
28+
run: deno task test

.github/workflows/publish.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ jobs:
1515
id-token: write # The OIDC ID token is used for authentication with JSR.
1616
steps:
1717
- uses: actions/checkout@v4
18+
- uses: denoland/setup-deno@v2
19+
with:
20+
deno-version: v2.x
21+
- name: Generate GraphQL code
22+
run: deno task codegen
1823
- run: npx jsr publish

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ jobs:
129129
uses: "denoland/setup-deno@v2"
130130
with:
131131
"deno-version": "v2.x"
132+
- name: "Generate GraphQL code"
133+
run: "deno task codegen"
132134
- name: Install dist
133135
run: ${{ matrix.install_dist.run }}
134136
# Get the dist-manifest

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.aider.*
22
.config/linear.toml
3+
4+
src/__codegen__/

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
### Removed
6+
7+
- linear issue <id> is removed, must use linear issue view <id>. linear issue
8+
prints help text
9+
- deprecated 'linear issue open' and 'linear issue print' commands - use 'linear
10+
issue view --app' and 'linear issue view' instead
11+
- removed team open command (use linear issue list -a)
12+
513
### Changed
614

715
- more consistent rendering of priority

__generated__/fragment-masking.ts

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)