- Update all non-major dependencies with digest and pinDigest #241
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: "Checking app: testing and linting JS" | |
on: | |
pull_request: | |
branches: [ "main" ] | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- '**.js' | |
- '**.ts' | |
- '**.vue' | |
- 'package.json' | |
- 'package.lock' | |
jobs: | |
test-and-lint-js: | |
name: Test & lint JS codebase | |
timeout-minutes: 10 | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 # https://github.com/actions/checkout | |
- name: Cache dependencies | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 # https://github.com/actions/cache | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-npm-dependencies-${{ hashFiles('package.lock') }} | |
restore-keys: ${{ runner.os }}-npm-dependencies | |
- name: Set up node | |
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4 # https://github.com/actions/setup-node | |
with: | |
node-version: 22 | |
- name: Instal npm dependencies | |
run: npm clean-install | |
- name: Run JS linter | |
run: npm run lint |