Merge pull request #210 from mixn/dependabot/npm_and_yarn/types/jest-… #359
This file contains 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: Tests | |
on: [pull_request, push, workflow_dispatch] | |
jobs: | |
checkout-and-run: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
node-version: [v18.0.0] | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Run tests | |
run: npm run test | |
timeout-minutes: 10 |