Skip to content

fix(deps): update dependency @testing-library/user-event to ^14.6.1 (… #260

fix(deps): update dependency @testing-library/user-event to ^14.6.1 (…

fix(deps): update dependency @testing-library/user-event to ^14.6.1 (… #260

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
merge_group:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Enabled Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 22
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn build
test:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Enabled Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 22
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install --immutable
- name: Test
run: yarn test --coverage --passWithNoTests