Skip to content

Bump the npm-packages group with 2 updates #436

Bump the npm-packages group with 2 updates

Bump the npm-packages group with 2 updates #436

Workflow file for this run

name: Code analysis
on:
push:
branches:
- develop
pull_request:
branches-ignore:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- name: Cache modules
uses: actions/cache@v5
with:
path: ./node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
${{ runner.os }}-yarn-
- name: Install modules
run: yarn install --immutable
- name: Run checks
run: yarn check
- name: Build project
run: yarn build