Skip to content

Bump nanoid from 3.3.7 to 3.3.8 in /test/dummy in the npm_and_yarn group across 1 directory #76

Bump nanoid from 3.3.7 to 3.3.8 in /test/dummy in the npm_and_yarn group across 1 directory

Bump nanoid from 3.3.7 to 3.3.8 in /test/dummy in the npm_and_yarn group across 1 directory #76

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
timeout-minutes: 5
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Install dependencies
run: yarn
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Install Ruby and gems for dummy app
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3.5'
bundler-cache: true
- name: Setup dummy app
run: bin/setup
working-directory: ./test/dummy
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30