Skip to content

report different states to azure test plans #22

report different states to azure test plans

report different states to azure test plans #22

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn
- name: Install Playwright
run: npx playwright install chromium
- name: Build project
run: yarn build
- name: Run tests
run: yarn test:reporter