build: update eslint dependencies #6392
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
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: | # todo fix later | |
npx nx build cdk | |
npx nx build ngxs | |
npx nx build jest | |
- name: Run build packages | |
run: | |
npx nx run-many --target=build --parallel=1 --all --exclude $(npx nx affected:apps --base=origin/master | |
--plain) | |
concurrency: | |
group: build-${{ github.head_ref }} | |
cancel-in-progress: true |