Bump eslint from 8.47.0 to 8.49.0 #454
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: Run code tests on Pull Request or Push | |
on: | |
# Runs for pushes and pull requests, | |
# but don't run these when only some config is changed. | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- 'src/config/*' | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths-ignore: | |
- 'src/config/**' | |
workflow_dispatch: | |
inputs: | |
node_version: | |
description: 'NodeJS version' | |
required: true | |
default: '16.x' | |
jobs: | |
test: | |
name: Run tests | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Node setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ inputs.node_version || '16.x' }} | |
cache: npm | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Deps | |
run: cat package-lock.json | |
- name: Lint code for code-style errors | |
run: npm run lint | |
- name: Check for compatibility issues | |
run: npm run lint:bundle | |
- name: Check project structure | |
run: npm run test:project | |
- name: Check NPM dependencies | |
run: node tests/dependencies.js |