Bump oven-sh/setup-bun from 123c6c4e2fea3eb7bffaa91a85eb6b3d505bf7af … #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'CI -> Test' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
concurrency: | |
group: '${{ github.workflow }}-${{ github.ref }}' | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: 'Lint' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Harden Runner' | |
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c # v2.9.0 | |
with: | |
egress-policy: audit | |
- name: 'Checkout' | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
persist-credentials: false | |
- name: 'Setup Bun' | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | |
- name: 'Setup dependencies' | |
run: bun install --frozen-lockfile | |
- name: 'Run lint' | |
run: bun run lint |