Skip to content

Commit

Permalink
ci: don't cancel others jobs if one job failed
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed May 19, 2024
1 parent e798668 commit a60d6e9
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- bundle
Expand Down Expand Up @@ -45,6 +46,7 @@ jobs:
contents: read
packages: write
strategy:
fail-fast: false
matrix:
package:
- bundle
Expand Down
4 changes: 2 additions & 2 deletions bundle/css/compatibility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import browserslist from "browserslist"
import bcd from "@mdn/browser-compat-data" with { type: "json" }
import * as semver from "@std/semver"
import type { Arg, Arrayable, Nullable, rw } from "@libs/typing"
import { Logger, type level as loglevel } from "@libs/logger"
import { brightGreen, brightMagenta, gray, green, red, yellow, italic } from "@std/fmt/colors"
import { type level as loglevel, Logger } from "@libs/logger"
import { brightGreen, brightMagenta, gray, green, italic, red, yellow } from "@std/fmt/colors"
import { Table } from "@cliffy/table"

/** Browsers list */
Expand Down
2 changes: 1 addition & 1 deletion bundle/css/compatibility_test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { bundle } from "./bundle.ts"
import { compatibility, Report } from "./compatibility.ts"
import { test, expect, fn, type testing } from "@libs/testing"
import { expect, fn, test, type testing } from "@libs/testing"
import { encodeBase64 } from "@std/encoding/base64"
;(Report as testing).testing()

Expand Down
1 change: 1 addition & 0 deletions qrcode/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion testing/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion xml/deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a60d6e9

Please sign in to comment.