Skip to content

ci: update

ci: update #6405

Workflow file for this run

name: CI Build
on:
pull_request:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Scan repo for find local actions
uses: actions/checkout@v4
- name: Setup Node.js and Cache
uses: ./.github/actions/nodejs
- run: npx nx run-many --target=build --projects=tag:libs
- run: npx nx run-many --target=build --projects=tag:apps
concurrency:
group: build-${{ github.head_ref }}
cancel-in-progress: true