Skip to content
Merged
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
21 changes: 17 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
lint-biome:
name: Lint Biome
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand All @@ -22,7 +22,7 @@ jobs:

lint-ts:
name: Lint TypeScript
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand All @@ -34,7 +34,7 @@ jobs:

lint-secretlint:
name: Lint Secretlint
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:

lint-renovate-config:
name: Lint Renovate config
runs-on: ubuntu-24.04
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand All @@ -56,6 +56,19 @@ jobs:
- name: Validate Renovate config
run: npx --yes --package renovate -- renovate-config-validator --strict

lint-action:
name: Lint GitHub Actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
Comment thread
yamadashy marked this conversation as resolved.
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
shell: bash

check-npm-audit:
name: Check npm audit
runs-on: ubuntu-latest
Expand Down