28
loading...
This website collects cookies to deliver better user experience
jobs:
e2e:
if: github.event.deployment_status.state == 'success'
name: End to End
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v2
- uses: microsoft/playwright-github-action@74fbf9d1a7c5d8735dab59804da3fdd367a98020
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Run Playwright tests
run: cd e2e && npm install && npm run test