Skip to content

chore(deps-dev): bump the test-dependencies group across 1 directory with 4 updates #76

chore(deps-dev): bump the test-dependencies group across 1 directory with 4 updates

chore(deps-dev): bump the test-dependencies group across 1 directory with 4 updates #76

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
types: [opened, synchronize, ready_for_review]
paths-ignore:
- '**/*.md'
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # 6.4.0
with:
node-version: 24
- name: Install dependencies and build
run: yarn install
- name: Install Playwright dependencies
run: npx playwright install --with-deps chromium
- name: Run tests
run: CI=1 yarn test