Skip to content

Add Forward-Future/loop-library skill to SKILLS.txt (#156) #303

Add Forward-Future/loop-library skill to SKILLS.txt (#156)

Add Forward-Future/loop-library skill to SKILLS.txt (#156) #303

Workflow file for this run

name: Bun
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
bun-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Bun
uses: shunkakinoki/actions/.github/actions/setup-bun@156beb8dbd9b84135a994da9ea77398d91e33df6
- name: Prepare
run: bun run prepare
- name: Check
run: bun run check
- name: Format
run: bun run format
- name: Lint
run: bun run lint
bun-check:
if: always()
needs:
- bun-lint
runs-on: ubuntu-latest
steps:
- name: Alls Green
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}