Bump debug from 4.3.4 to 4.3.7 in the npm_and_yarn group across 1 directory #344
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 | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
workflow_dispatch: | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "19.x" | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
npm- | |
- name: Install dependencies | |
run: npm ci --prefer-offline --no-audit | |
- name: Run linter | |
run: npm run lint | |
- name: Check code style | |
run: npm run prettier | |
- name: Run tests | |
run: npm run test |