Skip to content

Instantly share code, notes, and snippets.

View caugner's full-sized avatar

Claas Augner caugner

View GitHub Profile
@caugner
caugner / deno.sh
Created May 12, 2025 09:17
Test all deno versions
#!/usr/bin/env sh
if [[ -z "$1" ]]; then
echo "Usage: $0 <test> [<expected>]"
exit 1
fi
test=$1;
expected=$2;
@caugner
caugner / git-bisect-search.sh
Created September 17, 2025 08:39
git-bisect-search
git-bisect-search() {
if [ -z "$1" ]; then
echo "Usage: $0 <pattern>"
return 1
fi
local pattern="$1"
git bisect start
git bisect bad HEAD

Added

  • css.properties.align-content.first
  • css.properties.align-content.last
  • css.properties.align-content.baseline
  • css.properties.align-content.space-between
  • css.properties.align-content.space-around
  • css.properties.align-content.space-evenly
  • css.properties.align-content.stretch
  • css.properties.align-content.unsafe
name: Report build issues
on:
workflow_call:
inputs:
build-issues-artifact-id:
description: The ID of the artifact containing the issues.json file
required: true
type: string
content-path: