Skip to content

chore(deps-dev): bump rollup from 4.13.1 to 4.13.2 #2712

chore(deps-dev): bump rollup from 4.13.1 to 4.13.2

chore(deps-dev): bump rollup from 4.13.1 to 4.13.2 #2712

Workflow file for this run

name: "Test suite"
on:
push:
branches: [main]
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
jobs:
update:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Setup kernel for react, increase watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v4
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Check Code Formatter
run: yarn prettier:check
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Codecov
run: yarn run codecov --disable=gcov
- name: Build
run: yarn build