Bump mdast-util-to-hast from 13.2.0 to 13.2.1 in the npm_and_yarn group across 1 directory #105
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E tests | |
| on: | |
| push: | |
| branches: [main, next] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| run-tests: | |
| name: E2E tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v3 | |
| - name: Set up node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run test:e2e:install | |
| - name: Run tests | |
| run: npm run test:e2e | |
| - uses: daun/playwright-report-summary@v2 | |
| with: | |
| report-file: playwright-results.json |