Skip to content

chore(deps): update dependency rollup to v4.24.3 #634

chore(deps): update dependency rollup to v4.24.3

chore(deps): update dependency rollup to v4.24.3 #634

Workflow file for this run

name: Validation
on: pull_request
jobs:
lint:
name: Linting
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Setting node version to ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
- name: Use Yarn cache
uses: actions/cache@v3
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install
- run: yarn lint