Skip to content

WIP: Feat/builder pattern #26

WIP: Feat/builder pattern

WIP: Feat/builder pattern #26

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
permissions:
actions: read
contents: read
jobs:
master:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Connect your workspace on nx.app and uncomment this to enable task distribution.
# The "--stop-agents-after" is optional, but allows idle agents to shut down once the "build" targets have been requested
# - run: npx nx-cloud start-ci-run --distribute-on="5 linux-medium-js" --stop-agents-after="build"
# Cache node_modules
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- run: npm ci
- uses: nrwl/nx-set-shas@v4
# Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
# - run: npx nx-cloud record -- echo Hello World
- run: npx nx affected -t --no-cloud --base=remotes/origin/master~1 --head=remotes/origin/master lint test build
- run: npm run test