Skip to content

chore(deps): update dependency lint-staged to v15 #1842

chore(deps): update dependency lint-staged to v15

chore(deps): update dependency lint-staged to v15 #1842

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
tags-ignore:
- '*@*'
pull_request:
branches: [main, dev]
tags-ignore:
- '*@*'
workflow_call:
inputs:
force:
default: false
type: boolean
description: Force the workflow to run
required: false
jobs:
test:
if: ${{ (!contains(github.event.head_commit.message, 'skip-ci') && !startsWith(github.event.head_commit.message, 'release:')) || inputs.force }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [16.x, 18.x]
runs-on: ${{ matrix.os }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache pnpm store
uses: actions/cache@v3
env:
cache-name: cache-pnpm-store
with:
path: ${{ github.workspace }}/.pnpm-store
key: ${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node-version }}-test-${{ env.cache-name }}-
${{ runner.os }}-${{ matrix.node-version }}-test-
${{ runner.os }}-
- name: Install pnpm
run: npm i -g pnpm
- name: Set pnpm store path
run: pnpm config set store-dir .pnpm-store
- name: Install deps
run: pnpm i --no-frozen-lockfile
# Runs a set of commands using the runners shell
- name: Test
uses: coactions/setup-xvfb@v1
with:
run: pnpm test