Skip to content

Commit

Permalink
build: disable testing
Browse files Browse the repository at this point in the history
`std/testing/mock`がうまく機能していないため
  • Loading branch information
InkoHX committed Jan 29, 2023
1 parent 4ab2f5f commit 7979d49
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
with:
deno-version: v1.x

- name: Testing
run: deno test

- name: Build
run: deno task build:node ${{ github.ref }}

Expand Down
1 change: 1 addition & 0 deletions build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ await build({
entryPoints: ["./mod.ts"],
outDir: "./npm",
typeCheck: false,
test: false, // NOTE: 一時的に無効
compilerOptions: {
lib: ["dom", "esnext"],
target: "ES2020",
Expand Down

0 comments on commit 7979d49

Please sign in to comment.