Run Playwright tests on GitHub Actions
Перейти к файлу
Arjun Attam 133323800b feat: initial setup 2020-04-08 08:47:46 -07:00
.github/workflows feat: initial setup 2020-04-08 08:47:46 -07:00
dist feat: initial setup 2020-04-08 08:47:46 -07:00
sample feat: initial setup 2020-04-08 08:47:46 -07:00
.eslintrc.json feat: initial setup 2020-04-08 08:47:46 -07:00
.gitignore feat: initial setup 2020-04-08 08:47:46 -07:00
CODE_OF_CONDUCT.md Initial CODE_OF_CONDUCT.md commit 2020-03-04 12:37:42 -08:00
LICENSE Initial LICENSE commit 2020-03-04 12:37:45 -08:00
README.md feat: initial setup 2020-04-08 08:47:46 -07:00
SECURITY.md Initial SECURITY.md commit 2020-03-04 12:37:43 -08:00
action.yml feat: initial setup 2020-04-08 08:47:46 -07:00
index.js feat: initial setup 2020-04-08 08:47:46 -07:00
package.json feat: initial setup 2020-04-08 08:47:46 -07:00

README.md

Playwright GitHub Action

Set up your GitHub Actions runner to run Playwright tests.

Usage

jobs:
  e2e-tests:
    runs-on: ubuntu-latest # or macos-latest, windows-latest
    steps:
      - uses: actions/checkout@v2
      - uses: actions/setup-node@v1
      - uses: microsoft/playwright-github-action@v1
      - name: Install dependencies and run tests
        run: npm install && npm test

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.