Skip to content

chore: set lab to private (#399) #378

chore: set lab to private (#399)

chore: set lab to private (#399) #378

Workflow file for this run

name: Sigyn Discord
on:
push:
branches: [main]
pull_request:
paths:
- "package-lock.json"
- "src/discord/**"
- "!src/discord/**/*.md"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build packages
run: npm run build
- name: Run tests
run: npm run test --workspace=src/discord