fix(deps): bump node from 21.6.0-bookworm to 23.1.0-bookworm in /packages/convertbot #1298
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: Lint & Verify | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate package.json | |
uses: ExpediaGroup/package-json-validator@v1 | |
with: | |
rules: ranges | |
dependency-types: | | |
dependencies | |
devDependencies | |
- uses: actions/[email protected] | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Validate Copyright Headers | |
run: npm run verify:headers | |
- name: Build and Lint | |
run: | | |
npm run generate | |
npm run build:backend | |
npm run lint | |