Skip to content

chore(deps): update mcr.microsoft.com/playwright docker tag to v1.50.1 #664

chore(deps): update mcr.microsoft.com/playwright docker tag to v1.50.1

chore(deps): update mcr.microsoft.com/playwright docker tag to v1.50.1 #664

name: Build app and run tests
on:
pull_request:
branches: ["**"]
concurrency:
# Cancel in progress runs for this branch
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
with:
node-version: latest
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
version: 9
- name: Install Dependencies
run: pnpm install
shell: sh
- name: Build Application
run: pnpm run build
shell: sh
- name: Run Tests
run: pnpm run test.docker.ci
shell: sh
- uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30