Skip to content

Node.js 18, pnpm 8, jest 29, linting/formatting updates, and webpack fixes #4497

Node.js 18, pnpm 8, jest 29, linting/formatting updates, and webpack fixes

Node.js 18, pnpm 8, jest 29, linting/formatting updates, and webpack fixes #4497

Workflow file for this run

name: Javascript Linting
on:
push:
branches:
- unstable
- hotfixes
- master
pull_request:
jobs:
pre_job:
name: Path match check
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ github.token }}
paths: '["**.vue", "**.js", "pnpm-lock.yaml", ".github/workflows/frontendlint.yml"]'
test:
name: Frontend linting
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'pnpm'
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
npm rebuild node-sass
- name: Run tests
run: pnpm run lint-frontend:format
- name: Run pre-commit-ci-lite
uses: pre-commit-ci/[email protected]
if: always()