Skip to content

chore(deps): update actions/add-to-project action to v0.6.0 #20

chore(deps): update actions/add-to-project action to v0.6.0

chore(deps): update actions/add-to-project action to v0.6.0 #20

Workflow file for this run

name: 'Checks'
on:
pull_request:
branches:
- main
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
changed:
uses: ./.github/workflows/wc-changed.yml
check-actions:
runs-on: ubuntu-22.04
needs: changed
if: needs.changed.outputs.actions == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/actionlint-with-reviewdog
- uses: reviewdog/action-actionlint@b0a6aebe1d2191decc9b4f022cdfc248b702477d # v1.42.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
check-docs:
runs-on: ubuntu-22.04
needs: changed
if: needs.changed.outputs.docs == 'true'
timeout-minutes: 10
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@3bc85396a273ed82bba5e53a15174bbf9dba095c # v2.0.2
- name: Install deps
run: bun install
- name: Build
run: bun run build
status-check:
runs-on: ubuntu-22.04
needs:
- check-actions
- check-docs
permissions: { }
if: failure()
steps:
- run: exit 1