File tree Expand file tree Collapse file tree 18 files changed +1467
-0
lines changed Expand file tree Collapse file tree 18 files changed +1467
-0
lines changed Original file line number Diff line number Diff line change 1+ root =true
2+
3+ [* ]
4+ indent_style =space
5+ indent_size =2
6+ tab_width =2
7+ end_of_line =lf
8+ charset =utf-8
9+ trim_trailing_whitespace =true
10+ insert_final_newline =true
Original file line number Diff line number Diff line change 1+ /.yarn /** linguist-vendored
2+ /.yarn /releases /* binary
3+ /.yarn /plugins /** /* binary
4+ /.pnp. * binary linguist-generated
Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ concurrency :
8+ group : ${{ github.workflow }}-${{ github.ref }}
9+ cancel-in-progress : true
10+
11+ jobs :
12+ ci :
13+ name : ${{ matrix.os }}
14+ strategy :
15+ matrix :
16+ os :
17+ - macOS-latest
18+ - ubuntu-latest
19+ - windows-latest
20+ runs-on : ${{ matrix.os }}
21+ steps :
22+ - name : Checkout Repo
23+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
24+
25+ - name : Setup Deno
26+ uses : denoland/setup-deno@v2
27+ with :
28+ deno-version : v2.x
29+
30+ - name : Lint
31+ run : |
32+ deno fmt --check
33+ deno lint
Original file line number Diff line number Diff line change 1+ name : Deploy
2+ on :
3+ push :
4+ branches : main
5+ pull_request :
6+ branches : main
7+
8+ jobs :
9+ deploy :
10+ name : Deploy
11+ runs-on : ubuntu-latest
12+
13+ permissions :
14+ id-token : write
15+ contents : read
16+
17+ steps :
18+ - name : Checkout Repo
19+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
21+ - name : Setup Node LTS
22+ uses : actions/setup-node@v4
23+ with :
24+ node-version : lts/*
25+ cache : yarn
26+
27+ - name : Install Dependencies
28+ run : yarn install
29+
30+ - name : Checkout Deno
31+ uses : denoland/setup-deno@v2
32+ with :
33+ deno-version : v2.x
34+
35+ - name : Upload to Deno Deploy
36+ uses : denoland/deployctl@v1
37+ with :
38+ project : deepl-x
39+ entrypoint : main.ts
40+ root : .
Original file line number Diff line number Diff line change 1+ ! .vscode /settings.json
2+ .yarn /*
3+ ! .yarn /releases
4+ ! .yarn /plugins
Original file line number Diff line number Diff line change 1+ {
2+ "extends": [
3+ "github>1stG/configs"
4+ ]
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "editor.defaultFormatter" : " denoland.vscode-deno"
3+ }
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ enableTelemetry : false
2+
3+ nodeLinker : node-modules
4+
5+ yarnPath : .yarn/releases/yarn-4.9.1.cjs
Original file line number Diff line number Diff line change 11# deeplx
2+
23Running [ deeplx] ( https://github.com/un-ts/deeplx ) on Deno Deploy
You can’t perform that action at this time.
0 commit comments