Unverified Commit 9fd42210 authored by Hong Minhee's avatar Hong Minhee
Browse files

Skip test during dnt when it's publishing

parent 72e6e673
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -125,6 +125,8 @@ jobs:
      working-directory: ${{ github.workspace }}/src/
    - run: 'deno task dnt "$(jq -r .version deno.json)"'
      working-directory: ${{ github.workspace }}/src/
      env:
        DNT_SKIP_TEST: "true"
    - run: npm pack
      working-directory: ${{ github.workspace }}/src/npm/
    - run: deno task pack
+1 −0
Original line number Diff line number Diff line
@@ -103,6 +103,7 @@ await build({
  typeCheck: "both",
  declaration: "separate",
  declarationMap: true,
  test: Deno.env.get("DNT_SKIP_TEST") !== "true",
  compilerOptions: {
    target: "ES2022",
  },