-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1413054
commit 80d32ca
Showing
46 changed files
with
5,982 additions
and
3,001 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,23 +12,16 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Install Deno | ||
uses: denoland/setup-deno@v1 | ||
with: | ||
deno-version: v1.x | ||
- name: Type-check | ||
run: deno task test:types | ||
uses: actions/checkout@v4 | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
- name: Install Dependencies | ||
run: npm ci --no-fund | ||
- name: Unit Test | ||
run: deno task test:unit | ||
- name: Lint | ||
run: deno lint | ||
- name: Format Test | ||
run: deno fmt --check | ||
- name: UI Test | ||
run: deno task test:ui | ||
# to-do: fix | ||
# `Error: R] Directory not empty (os error 39): rename '/tmp/a3748ae3' -> '/home/runner/.cache/deno/deno_esbuild/@lit/[email protected]/node_modules/@lit/reactive-element' [plugin deno-loader]` | ||
# error. https://github.com/oidoid/linear-text/actions/runs/7430168447/job/20219563902 | ||
# - name: Build | ||
# run: deno task build | ||
run: npm run test:unit | ||
- name: Test Format | ||
run: npm run test:format | ||
- name: Type-check UI | ||
run: npm run test:types:ui | ||
- name: Build | ||
run: npm run build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/node_modules/ | ||
tsconfig.tsbuildinfo | ||
/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1 @@ | ||
{ | ||
"deno.enable": true, | ||
"deno.lint": true, | ||
"deno.unstable": true, | ||
"editor.defaultFormatter": "denoland.vscode-deno" | ||
} | ||
{"typescript.tsdk": "node_modules/typescript/lib"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.