build(deps-dev): Bump eslint from 8.57.0 to 9.5.0 #467
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: Default Node CI | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
name: lints | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 16 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies . . . | |
working-directory: . | |
run: npm ci | |
- name: Build Docker Image "free-ignorance/shrewd" | |
run: docker build -t free-ignorance/shrewd . | |
- name: Run The Lints . . . | |
run: docker run free-ignorance/shrewd npm run test:lint | |
tests: | |
name: tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 16 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies . . . | |
working-directory: . | |
run: npm ci | |
- name: Build Docker Image "free-ignorance/shrewd" | |
run: docker build -t free-ignorance/shrewd . | |
- name: Run The Tests . . . | |
run: docker run free-ignorance/shrewd npm run test | |
codecoverage: | |
name: codecoverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking Out Commits Securely . . . | |
uses: actions/checkout@v2 | |
- name: Setup Node 16 Environment . . . | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install Dependencies . . . | |
working-directory: . | |
run: npm ci | |
- name: Build Docker Image "free-ignorance/shrewd" | |
run: docker build -t free-ignorance/shrewd . | |
- name: Run The Tests . . . | |
run: docker run free-ignorance/shrewd npm run test:coverage | |
- name: Codecove Action . . . | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN}} # not required for public repos | |
# fail_ci_if_error: true # optional (default = false) | |
verbose: true # optional (default = false) | |