Skip to content

Commit

Permalink
feat: nx actions
Browse files Browse the repository at this point in the history
  • Loading branch information
maratsh committed Feb 1, 2024
1 parent a5bcc18 commit 388a78d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
32 changes: 32 additions & 0 deletions .github/workflows/nx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI
on:
push:
branches:
# Change this if your primary branch is not main
- main
pull_request:

# Needed for nx-set-shas when run on the main branch
permissions:
actions: read
contents: read

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Cache node_modules
- uses: actions/setup-node@v3
with:
node-version: 20
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-cloud record -- nx format:check
- run: npx nx affected -t lint,test,build --parallel=3
3 changes: 2 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@
},
"affected": {
"defaultBase": "main"
}
},
"nxCloudAccessToken": "YjA5NmYyY2QtODJlOS00YTZmLWEzOTUtZWNlZGU2OTc1MTBlfHJlYWQtd3JpdGU="
}

0 comments on commit 388a78d

Please sign in to comment.