Skip to content

Security: Update Node version #3900

Security: Update Node version

Security: Update Node version #3900

Workflow file for this run

name: Lint tests
on: [push, pull_request]
jobs:
lint-test:
strategy:
fail-fast: true
runs-on: ubuntu-latest
name: Lint
timeout-minutes: 20
steps:
- name: Get sources
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install dependencies
env:
PUPPETEER_SKIP_DOWNLOAD: true
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm run lint