Skip to content

chore: commit latest audit and training test updates #24

chore: commit latest audit and training test updates

chore: commit latest audit and training test updates #24

name: Env Audit
on:
pull_request:
push:
branches: [develop]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CI: true
jobs:
env-audit:
name: env:audit:check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Env audit check
run: bun run --cwd packages/feed env:audit:check
continue-on-error: true