Skip to content

Bump chalk from 4.1.2 to 5.3.0 #35

Bump chalk from 4.1.2 to 5.3.0

Bump chalk from 4.1.2 to 5.3.0 #35

Workflow file for this run

name: Test on branch push
on: push
jobs:
test:
runs-on: ubuntu-latest
env:
NODE_ENV: 'PROD'
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- run: |
yarn config set unsafe-disable-integrity-migration true -g
yarn install --ignore-engines --frozen-lockfile --non-interactive
- run: xvfb-run yarn unit
if: always()
env:
DISPLAY: 99.0
DBUS_SESSION_BUS_ADDRESS: '/dev/null'
- name: Install Playwright Browsers
if: always()
run: npx playwright install --with-deps
- name: Run Playwright tests
if: always()
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 1