Skip to content

build(deps): bump axios from 1.4.0 to 1.6.0 in /server #127

build(deps): bump axios from 1.4.0 to 1.6.0 in /server

build(deps): bump axios from 1.4.0 to 1.6.0 in /server #127

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: cd client && npm ci
- name: Install Playwright Browsers
run: cd client && npx playwright install --with-deps
- name: 'Create env file'
run: cd client && touch .env && echo "${{ secrets.ENV_FILE }}" > .env
- name: Run Playwright tests
run: cd client && npx playwright test tests
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30