Skip to content

BAE-6: Migrate to NX Workspace #30

BAE-6: Migrate to NX Workspace

BAE-6: Migrate to NX Workspace #30

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci --no-audit --no-fund
env:
NODE_ENV: ci
- name: Lint
run: npx nx affected --target lint
- name: Test Affected
run: npx nx affected --target test --configuration ci