Bump @playwright/test from 1.45.3 to 1.48.2 in /visual-tests #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Visual tests Linter | |
on: | |
push: | |
paths: | |
- 'visual-tests/**' | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
env: | |
NODE_VERSION: 20 | |
jobs: | |
lint: | |
name: JS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # https://github.com/actions/checkout/releases/tag/v4.1.1 | |
- name: Use Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # https://github.com/actions/setup-node/releases/tag/v4.0.2 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: 'npm' | |
- name: Install monorepo dependencies | |
run: | | |
npm ci --no-audit | |
- name: Lint | |
run: | | |
npm run in visual-tests lint |