Update dependency versions from @sibelius #23
Workflow file for this run
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: 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 |