build: update eslint dependencies #3535
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 Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
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 | |
- name: Run build artifacts dependent | |
run: | # todo fix later | |
npx nx build cdk | |
npx nx build ngxs | |
npx nx build jest | |
npx nx build eslint-plugin-enterprise | |
- name: Run unit tests | |
run: npx nx run-many --target=test --all --parallel=1 --collect-coverage | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: ./coverage/cdk/ | |
flags: summary,cdk | |
name: cdk | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: ./coverage/ngxs/ | |
flags: summary,ngxs | |
name: ngxs | |
- uses: codecov/codecov-action@v3 | |
with: | |
directory: ./coverage/jest/ | |
flags: summary,jest | |
name: jest | |
concurrency: | |
group: test-${{ github.head_ref }} | |
cancel-in-progress: true |