A simple to-do app focused on tasks that can be completed within a specific time span.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add tangle ci

tobinio 97a506cb 0942e028

+57
+35
.tangled/workflows/deploy.yml
··· 1 + when: 2 + - event: ["push"] 3 + tag: ["v*"] 4 + 5 + engine: nixery 6 + 7 + dependencies: 8 + nixpkgs: 9 + - kaniko 10 + 11 + environment: 12 + DOCKER_CONFIG: "/kaniko/.docker" 13 + REGISTRY: "atcr.io" 14 + PROJECT: "tobinio.dev/task-line" 15 + 16 + steps: 17 + - name: Configure Kaniko 18 + command: | 19 + mkdir -p /kaniko/.docker && mkdir -p /kaniko/tmp 20 + echo "{ 21 + \"auths\": { 22 + \"$REGISTRY\": { 23 + \"auth\": \"$(echo -n "$USERNAME:$PASSWORD" | base64)\" 24 + } 25 + } 26 + }" > /kaniko/.docker/config.json 27 + 28 + - name: Build and push image 29 + command: | 30 + executor \ 31 + --context=/tangled/workspace/ \ 32 + --dockerfile=/tangled/workspace/Dockerfile \ 33 + --destination=$REGISTRY/$PROJECT:$TANGLED_REF_NAME \ 34 + --cache=false \ 35 + --verbosity=info
+22
.tangled/workflows/lint.yml
··· 1 + when: 2 + - event: ["push", "manual"] 3 + branch: ["main"] 4 + - event: ["pull_request"] 5 + branch: ["main"] 6 + 7 + engine: nixery 8 + 9 + dependencies: 10 + nixpkgs: 11 + - nodejs 12 + - pnpm 13 + 14 + steps: 15 + - name: Install 16 + command: pnpm install --frozen-lockfile 17 + 18 + - name: Lint (Biome) 19 + command: node_modules/@biomejs/cli-linux-x64-musl/biome ci 20 + 21 + - name: Lint (Typescript) 22 + command: pnpm lint:typecheck