Skip to content

feat: update client all #393

feat: update client all

feat: update client all #393

Workflow file for this run

name: branch
on:
push:
branches:
- '**'
- '!main'
permissions:
actions: read
contents: read
jobs:
security:
permissions:
contents: read
checks: read
statuses: read
security-events: write
uses: affinidi/pipeline-security/.github/workflows/security-scanners.yml@feat/check-inherit
with:
config-path: .github/labeler.yml
secrets: inherit
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Cache node_modules
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'npm'
- run: npm ci
- uses: nrwl/nx-set-shas@v3
# This line is needed for nx affected to work when CI is running on a PR
- run: git branch --track main origin/main
# - run: npx nx format:check
- run: npx nx affected -t build --parallel=3