Skip to content

docs: connect the public builder profile #159

docs: connect the public builder profile

docs: connect the public builder profile #159

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci
- run: npm run check
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Gitleaks PR scans need parent commits (`SHA^..SHA`); shallow clones fail.
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: npm
- run: npm ci
- name: Dependency audit
run: npm audit --omit=dev
- name: Gitleaks
uses: gitleaks/gitleaks-action@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}