Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/actions/fix-stuff/action.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/continuous-link-linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
lint-links:
runs-on: ubuntu-latest
runs-on: ubuntu-slim

steps:
- name: Checkout repository
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/fix-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ jobs:
commit_user_name: osrs-taskbot
commit_user_email: r.mobis+taskbot@gmail.com
commit_message: "[skip-fix] format and generate missing UUIDs"
disable_pull_request_target_trigger_warning: true

lint-gate:
name: Lint Gate
Expand Down Expand Up @@ -128,17 +129,18 @@ jobs:

- uses: ./.github/actions/setup

- name: Lint code
run: npm run lint:ultracite
- parallel:
- name: Lint code
run: npm run lint:ultracite

- name: Lint tasks
run: npm run lint:tasks
- name: Lint tasks
run: npm run lint:tasks

- name: Lint schema
run: npm run lint:schema
- name: Lint schema
run: npm run lint:schema

- name: Lint UUIDs
run: npm run lint:uuids
- name: Lint UUIDs
run: npm run lint:uuids

lint-links:
name: Link Links
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push-task-list-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
plugin:
runs-on: ubuntu-latest
runs-on: ubuntu-slim

steps:
- name: Checkout repository
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
token: ${{ secrets.ROBOT_GITHUB_TOKEN }}

taskapp:
runs-on: ubuntu-latest
runs-on: ubuntu-slim

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"scripts": {
"format:ultracite": "ultracite format",
"format:ultracite": "ultracite fix",
"format:tasks": "tsx bin/frac.mts tiers/*.json",
"format": "npm run format:ultracite && npm run format:tasks",
"lint:ultracite": "ultracite lint",
"lint:ultracite": "ultracite check",
"lint:tasks": "tsx bin/frac.mts --lint tiers/*.json",
"lint:schema": "tsx bin/validate-schema.mts",
"lint:uuids": "tsx bin/validate-uuids.mts",
Expand Down
Loading